/* PAWS — pet-care starter. Friendly teal + tangerine on warm cream,
   Baloo 2 display / Nunito body. Playful but trustworthy — rounded, bouncy,
   never childish. Tokens feed the CMS block library. */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --t-bg: #fdf9f1;
  --t-bg-alt: #f6eedd;
  --t-fg: #3a2a1e;
  --t-muted: #7c6a5a;
  --t-brand: #14948e;
  --t-brand-fg: #ffffff;
  --t-accent: #ff8b3d;
  --t-dark-bg: #2b2014;
  --t-dark-fg: #faf2e4;
  --t-border: #ecdfc8;
  --t-radius: 20px;
  --t-font-display: "Baloo 2", system-ui, sans-serif;
  --t-font-body: "Nunito", system-ui, sans-serif;
  --t-maxw: 1120px;
  --t-shadow: 0 10px 28px -12px rgba(58, 42, 30, .22);
  --t-display-weight: 600;
  --t-display-tracking: -0.01em;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--t-font-body); color: var(--t-fg); background: var(--t-bg); }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(253, 249, 241, .92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--t-border);
}
.site-header .bar {
  max-width: var(--t-maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 26px;
}
.logo { font-family: var(--t-font-display); font-weight: 700; font-size: 23px; color: var(--t-fg);
  text-decoration: none; letter-spacing: -.01em; }
.logo .paw { color: var(--t-accent); }
.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a { color: var(--t-muted); text-decoration: none; font-weight: 700; font-size: 15px; }
.site-nav a:hover { color: var(--t-brand); }
.header-cta {
  background: var(--t-brand); color: var(--t-brand-fg); font-weight: 800; font-size: 15px;
  padding: 11px 22px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 20px -8px var(--t-brand);
  transition: transform .15s ease;
}
.header-cta:hover { filter: brightness(1.08); transform: translateY(-2px); }
@media (max-width: 760px) { .site-nav { display: none; } }

/* footer */
.site-footer { background: var(--t-dark-bg); color: var(--t-dark-fg); }
.site-footer .inner {
  max-width: var(--t-maxw); margin: 0 auto; padding: 44px 24px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.site-footer p { margin: 0; color: #c2ab90; font-size: 14px; }
.site-footer .foot-logo { font-family: var(--t-font-display); font-weight: 700; font-size: 20px; color: var(--t-dark-fg); }
