:root {
  --cream: #fff8f4;
  --blush: #fde4ee;
  --pink: #f5a9c8;
  --rose: #d9508a;
  --rose-dark: #b03a70;
  --lilac: #ece3fb;
  --mint: #dff5ec;
  --ink: #3a2933;
  --muted: #7a6670;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(217, 80, 138, 0.14);
  --font: ui-rounded, "Nunito", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.05rem;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--rose-dark); }
a:hover { color: var(--rose); }

.container { width: min(1100px, 100% - 2rem); margin-inline: auto; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 .6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  background: var(--blush);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: .3rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--blush);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--rose-dark);
  text-decoration: none;
}
.brand span.dot { font-size: 1.5rem; }
.nav-links {
  display: flex;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: 999px;
}
.nav-links a:hover { background: var(--blush); }
.nav-links a[aria-current="page"] { background: var(--blush); color: var(--rose-dark); }
.nav-links a.btn { color: var(--white); background: var(--rose); }
.nav-links a.btn:hover { background: var(--rose-dark); }

.nav-toggle {
  display: none;
  background: var(--blush);
  border: 0;
  border-radius: 12px;
  font-size: 1.4rem;
  padding: .3rem .7rem;
  cursor: pointer;
  color: var(--rose-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--rose-dark); color: var(--white); transform: translateY(-2px); }
.btn.secondary { background: var(--white); color: var(--rose-dark); box-shadow: none; border: 2px solid var(--pink); }
.btn.secondary:hover { background: var(--blush); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--blush) 0%, var(--lilac) 100%);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.hero p.lead { font-size: 1.2rem; color: var(--muted); max-width: 34rem; }
.hero-art {
  font-size: clamp(7rem, 20vw, 12rem);
  text-align: center;
  filter: drop-shadow(0 12px 18px rgba(217, 80, 138, .25));
}
.hero .cloud {
  position: absolute;
  background: rgba(255, 255, 255, .55);
  border-radius: 999px;
}
.cloud.c1 { width: 220px; height: 70px; top: 30px; right: 8%; }
.cloud.c2 { width: 160px; height: 55px; bottom: 30px; left: 5%; }

.page-hero {
  background: linear-gradient(160deg, var(--blush) 0%, var(--lilac) 100%);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero p { color: var(--muted); max-width: 40rem; margin-inline: auto; }

/* Sections */
section { padding: 4rem 0; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title p { color: var(--muted); max-width: 38rem; margin-inline: auto; }

.grid { display: grid; gap: 1.4rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--blush);
}
.card .icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: var(--blush);
  border-radius: 16px;
  margin-bottom: 1rem;
}
.card:nth-child(3n+2) .icon { background: var(--lilac); }
.card:nth-child(3n+3) .icon { background: var(--mint); }
.card p:last-child { margin-bottom: 0; color: var(--muted); }

.alt { background: var(--white); }

.steps { counter-reset: step; }
.step { text-align: center; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
}
.step p { color: var(--muted); }

.cta-band {
  background: var(--rose);
  color: var(--white);
  text-align: center;
  border-radius: 32px;
  padding: 3rem 1.5rem;
}
.cta-band p { opacity: .92; }
.cta-band .btn { background: var(--white); color: var(--rose-dark); }
.cta-band .btn:hover { background: var(--blush); }

.checklist { list-style: none; padding: 0; margin: 1rem 0 0; }
.checklist li { padding-left: 2rem; position: relative; margin-bottom: .6rem; }
.checklist li::before { content: "🐾"; position: absolute; left: 0; }

.values { text-align: center; }
.values .card .icon { margin-inline: auto; }

/* Forms */
form { display: grid; gap: 1rem; }
label { font-weight: 700; display: block; margin-bottom: .3rem; }
input, select, textarea {
  width: 100%;
  font: inherit;
  padding: .8rem 1rem;
  border-radius: 14px;
  border: 2px solid var(--blush);
  background: var(--cream);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--pink); background: var(--white); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .9rem; color: var(--muted); margin: 0; }

.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.6rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: 1rem; }
.contact-list strong { display: block; color: var(--rose-dark); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #f0e4ea;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer a { color: #f8c9dc; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-grid h4 { margin: 0 0 .6rem; color: var(--white); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .4rem; }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-size: .9rem;
  opacity: .8;
  text-align: center;
}

.notfound { text-align: center; padding: 6rem 0; }
.notfound .big { font-size: 6rem; }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; font-size: 6rem; }
  .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: 1rem;
    border-bottom: 1px solid var(--blush);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; text-align: center; }
  .site-header { position: sticky; }
}
@media (max-width: 560px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  section { padding: 3rem 0; }
}

/* Legal pages */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.legal h3 { margin-top: 1.4rem; }
.legal ul { padding-left: 1.4rem; }
.legal li { margin-bottom: .4rem; }
.legal .updated { color: var(--muted); font-size: .95rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .98rem; }
.legal th, .legal td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--blush); vertical-align: top; }
.legal th { background: var(--blush); color: var(--rose-dark); }
.legal .table-wrap { overflow-x: auto; }
.todo { background: #fff3a8; padding: 0 .25rem; border-radius: 4px; }

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.4rem;
  margin-top: 2rem;
  font-size: .95rem;
}

/* Form consent checkbox */
input[type="checkbox"] { width: auto; margin-top: .35rem; flex-shrink: 0; accent-color: var(--rose); }
label.check { display: flex; gap: .6rem; font-weight: 500; font-size: .95rem; margin: 0; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 720px;
  margin-inline: auto;
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(58, 41, 51, .25);
  padding: 1.2rem 1.4rem;
}
.cookie-banner p { margin: 0 0 .9rem; font-size: .95rem; }
.cookie-banner .btn-row { margin-top: 0; }
.cookie-banner .btn { padding: .6rem 1.2rem; font-size: .95rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
