/* Murmelknips — warm, playful, clean. No external fonts/scripts. */
:root {
  --cream:    #F7F0E1;
  --cream-2:  #FBF6EC;
  --sand:     #C4A882;
  --sand-dk:  #A98C63;
  --teal:     #2E8B85;
  --teal-dk:  #226B66;
  --mustard:  #E9A623;
  --red:      #B5423B;
  --red-dk:   #97342E;
  --ink:      #3A322A;
  --ink-soft: #6B5F50;
  --radius:   28px;
  --radius-lg: 44px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Decorative blobs (echo the logo's colour pills) ---------- */
.blob {
  position: fixed;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}
.blob.b1 { width: 150px; height: 230px; background: var(--teal);    top: -60px;  left: 6vw;  transform: rotate(-12deg); }
.blob.b2 { width: 110px; height: 110px; background: var(--mustard);  top: 18vh;   right: 8vw; }
.blob.b3 { width: 130px; height: 200px; background: var(--red);      bottom: -70px; right: 14vw; transform: rotate(14deg); }
.blob.b4 { width: 90px;  height: 150px; background: var(--sand);     bottom: 10vh; left: 4vw;  transform: rotate(8deg); }
.blob.b5 { width: 70px;  height: 70px;  background: var(--mustard);  bottom: 22vh; left: 16vw; }

/* ---------- Layout ---------- */
.page {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px;
}

/* ---------- Home ---------- */
.logo {
  width: min(560px, 86vw);
  height: auto;
  border-radius: 24px;
  box-shadow: 0 22px 50px -18px rgba(58, 50, 42, 0.45);
}

.tagline {
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 38px 0 6px;
  max-width: 18ch;
  text-wrap: balance;
}

.subline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 34ch;
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--cream-2);
  text-decoration: none;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  padding: 18px 38px;
  border-radius: 999px;
  box-shadow: 0 12px 26px -10px rgba(151, 52, 46, 0.65);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover {
  background: var(--red-dk);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -10px rgba(151, 52, 46, 0.7);
}
.btn:active { transform: translateY(-1px); }
.btn .arrow { font-size: 1.2em; line-height: 1; }

/* ---------- Content pages ---------- */
.content {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 28px 40px;
}
.content .home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dk);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 28px;
}
.content .home-link:hover { color: var(--teal); }

.card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 40px clamp(24px, 5vw, 52px);
  box-shadow: 0 18px 44px -20px rgba(58, 50, 42, 0.35);
}
.card h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 8px;
  color: var(--ink);
}
.card .accent-rule {
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: var(--mustard);
  margin: 0 0 28px;
}
.card h2 {
  font-size: 1.15rem;
  color: var(--teal-dk);
  margin: 30px 0 6px;
}
.card p, .card address {
  margin: 6px 0;
  color: var(--ink-soft);
  font-style: normal;
}
.card a { color: var(--red); }
.placeholder {
  background: repeating-linear-gradient(45deg, #efe6d4, #efe6d4 10px, #f4ecdd 10px, #f4ecdd 20px);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--sand-dk);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .85rem;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 24px 36px;
  color: var(--ink-soft);
  font-size: .95rem;
}
.footer nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  transition: color .15s ease;
}
.footer a:hover { color: var(--teal-dk); }
.footer .dot { color: var(--sand); }
.footer .copy { margin-top: 14px; font-size: .85rem; color: var(--sand-dk); }
