/* PoMo Sitter — fun, teen-run neighbourhood brand
   Palette: fresh green, playful coral, sunny yellow, ink. Rounded + bouncy. */
:root {
  --green: #18b26b;
  --green-deep: #0f8f54;
  --coral: #ff6b5e;
  --sun: #ffc23c;
  --sky: #38bdf8;
  --ink: #1e2a24;
  --muted: #5c6f64;
  --cream: #fff9f0;
  --paper: #ffffff;
  --line: #ecebe3;
  --shadow: 0 14px 34px rgba(20, 60, 40, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo, .btn, .step-num, .bar-cta {
  font-family: "Fredoka", "Nunito", sans-serif;
}

a { color: inherit; text-decoration: none; }

/* ---------- top bar ---------- */
.bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 5vw, 48px);
  background: rgba(255, 249, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.paw { filter: drop-shadow(0 2px 0 rgba(0,0,0,0.06)); }

.bar-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 26px);
  font-weight: 700;
}

.bar-links a { color: var(--muted); }
.bar-links a:hover { color: var(--ink); }

.bar-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
}

.bar-cta:hover { background: var(--green-deep); }

@media (max-width: 620px) {
  .bar-links a:not(.bar-cta) { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 9vw, 110px) clamp(20px, 6vw, 64px) clamp(56px, 9vw, 110px);
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(56, 189, 248, 0.18), transparent 60%),
    linear-gradient(160deg, #eafff2 0%, #fff7e6 40%, #fff2e8 100%);
  background-color: #eafff2;
}

.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; text-align: center; }

.wave {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--sun);
  color: var(--green-deep);
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.1rem, 6.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.hl {
  background: linear-gradient(120deg, var(--green), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
}

.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0;
  margin: 30px 0 0;
}

.hero-chips li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 14px rgba(20, 60, 40, 0.06);
}

.hero-blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.5; z-index: 1; }
.blob-1 { width: 260px; height: 260px; background: var(--sun); top: -60px; right: -40px; }
.blob-2 { width: 220px; height: 220px; background: var(--coral); bottom: -70px; left: -50px; opacity: 0.35; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}

.btn-big { background: var(--green); color: #fff; box-shadow: var(--shadow); }
.btn-big:hover { transform: translateY(-2px) rotate(-1deg); background: var(--green-deep); }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { transform: translateY(-2px); background: var(--ink); color: #fff; }

/* ---------- sections ---------- */
.section { padding: clamp(48px, 8vw, 92px) clamp(20px, 6vw, 64px); max-width: 1080px; margin: 0 auto; }
.section.alt { background: var(--paper); max-width: none; }
.section.alt > * { max-width: 1080px; margin-left: auto; margin-right: auto; }

.h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  text-align: center;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}
.h2.left { text-align: left; }

.sub { text-align: center; color: var(--muted); font-size: 1.1rem; margin: 0 0 34px; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 10px 24px rgba(20, 60, 40, 0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.card .emoji {
  font-size: 2.6rem;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border-radius: 18px;
  margin-bottom: 14px;
}
.c-green .emoji { background: #e3f8ec; }
.c-coral .emoji { background: #ffe9e6; }
.c-sun .emoji { background: #fff2d6; }

.card h3 { font-size: 1.35rem; margin: 0 0 8px; }
.card p { margin: 0 0 14px; color: var(--muted); }

.tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-deep);
  background: #eafaf0;
  padding: 5px 12px;
  border-radius: 999px;
}

.c-coral .tag { color: #c6473c; background: #ffe9e6; }
.c-sun .tag { color: #9a6a00; background: #fff2d6; }

.note { text-align: center; color: var(--muted); margin: 28px auto 0; max-width: 620px; }
.note.tiny { font-size: 0.85rem; margin-top: 16px; }

/* ---------- steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--cream);
  border: 2px dashed #dfe7e0;
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.step-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.step:nth-child(2) .step-num { background: var(--coral); }
.step:nth-child(3) .step-num { background: var(--sun); color: var(--ink); }
.step h3 { margin: 0 0 6px; font-size: 1.25rem; }
.step p { margin: 0; color: var(--muted); }

/* ---------- trust ---------- */
.trust-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 34px; align-items: center; }
@media (max-width: 800px) { .trust-wrap { grid-template-columns: 1fr; } }

.trust-copy p { color: var(--muted); font-size: 1.08rem; }

.badges { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.badges li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 16px;
  font-weight: 700;
}

.trust-card {
  background: linear-gradient(160deg, var(--green), var(--green-deep));
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.quote-big { font-family: "Fredoka"; font-size: 4rem; line-height: 0.6; opacity: 0.5; }
.quote-text { font-size: 1.15rem; font-weight: 700; }
.quote-who { opacity: 0.9; font-weight: 700; }
.trust-card .stars { margin-top: 10px; }

/* ---------- reviews ---------- */
.card.quote { text-align: left; }
.card.quote p { color: var(--ink); font-weight: 600; }
.who { font-weight: 800; color: var(--green-deep); }
.stars { letter-spacing: 2px; }

/* ---------- book ---------- */
.book {
  max-width: none;
  background:
    radial-gradient(900px 400px at 80% 120%, rgba(255, 194, 60, 0.25), transparent 60%),
    linear-gradient(160deg, #18b26b, #0f8f54);
  background-color: var(--green-deep);
  color: #fff;
  text-align: center;
}
.book-inner { max-width: 680px; margin: 0 auto; }
.book .h2 { color: #fff; }
.book p { color: rgba(255, 255, 255, 0.92); font-size: 1.12rem; }
.book-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 24px 0 6px; }
.book .btn-ghost { border-color: #fff; color: #fff; background: transparent; }
.book .btn-ghost:hover { background: #fff; color: var(--green-deep); }
.book .note { color: rgba(255,255,255,0.8); }

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: #cfe3d6;
  text-align: center;
  padding: 40px 24px;
}
.foot-brand { font-family: "Fredoka"; font-size: 1.4rem; color: #fff; margin: 0 0 8px; }
.footer p { margin: 4px auto; max-width: 560px; }
.fine { font-size: 0.85rem; opacity: 0.8; }

/* ---------- booking form ---------- */
.booking-form {
  text-align: left;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 8px auto 0;
}
.booking-form label { display: block; font-weight: 700; margin-top: 14px; font-size: 0.95rem; }
.booking-form > label:first-of-type, .row2 label { margin-top: 0; }
.booking-form .opt { font-weight: 600; color: var(--muted); font-size: 0.85rem; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .row2 { grid-template-columns: 1fr; } }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: none; border-color: var(--green); }
.booking-form .btn-big { width: 100%; margin-top: 18px; }
.booking-msg { margin: 14px 0 0; padding: 11px 13px; border-radius: 11px; font-weight: 700; }
.booking-msg.ok { background: #e3f8ec; color: var(--green-deep); }
.booking-msg.err { background: #ffe9e6; color: #c6473c; }
.or { color: rgba(255, 255, 255, 0.85); font-weight: 700; margin: 22px 0 10px; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .wave { animation: bob 3s ease-in-out infinite; }
  @keyframes bob { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-5px); } }
}
