/* =========================================================
   Social Paw - styles.css
   Lightweight, mobile-first, hand-coded. No frameworks.
   Palette: teal primary, coral + warm gold accents,
   soft off-white bg, dark slate text.
   ========================================================= */

:root {
  --teal: #15a3a3;
  --teal-dark: #0e7d7d;
  --teal-soft: #d8f1f1;
  --coral: #ff6f61;
  --coral-dark: #e8584a;
  --gold: #ffb84d;
  --gold-soft: #fff1da;
  --ink: #2b3440;
  --ink-soft: #51606f;
  --bg: #fbfaf7;
  --white: #ffffff;
  --line: #e7e3da;
  --shadow: 0 10px 30px rgba(43, 52, 64, 0.08);
  --shadow-lg: 0 18px 50px rgba(43, 52, 64, 0.14);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --maxw: 1140px;
  --font: "Nunito", "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Quicksand", var(--font);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); letter-spacing: -0.3px; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.bg-white { background: var(--white); }
.bg-teal-soft { background: var(--teal-soft); }
.bg-gold-soft { background: var(--gold-soft); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.eyebrow.coral { color: var(--coral-dark); background: #ffe6e2; }
.eyebrow.gold { color: #a96a00; background: var(--gold-soft); }

.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-family: "Quicksand", var(--font);
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 8px 20px rgba(255, 111, 97, 0.35); }
.btn-primary:hover { background: var(--coral-dark); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(21, 163, 163, 0.3); }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--teal-dark); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal-soft); color: var(--teal-dark); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Quicksand", var(--font); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand svg { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block;
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
}
.nav-links a:hover { background: var(--teal-soft); color: var(--teal-dark); text-decoration: none; }
.nav-links a.active { color: var(--teal-dark); }
.nav-cta { margin-left: 6px; }
.nav-toggle {
  display: none;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 12px;
  width: 46px; height: 44px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 span { color: var(--teal); }
.hero .lead { max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: var(--ink-soft); font-weight: 700; font-size: 0.95rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Media / photo placeholders ---------- */
.media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-soft), var(--gold-soft));
  box-shadow: var(--shadow-lg);
  min-height: 360px;
  display: grid;
  place-items: center;
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.photo-ph {
  width: 100%;
  min-height: 220px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(135deg, var(--teal-soft), var(--gold-soft));
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-weight: 700;
  text-align: center;
  padding: 24px;
  border: 2px dashed rgba(21,163,163,0.4);
}
.photo-ph small { display: block; font-weight: 600; opacity: 0.8; margin-top: 4px; font-size: 0.82rem; }
.photo-ph svg { width: 64px; height: 64px; opacity: 0.55; margin-bottom: 8px; }

/* Real photos replacing placeholders */
.img-cover { width: 100%; object-fit: cover; border-radius: var(--radius); display: block; background: var(--teal-soft); }
.media .img-cover { height: 100%; min-height: 360px; border-radius: var(--radius-lg); }
.post-card .img-cover { border-radius: 0; }
.svc-media .img-cover { min-height: 300px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-top: 6px; }
.card .price { font-weight: 800; color: var(--coral-dark); }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 14px;
  background: var(--teal-soft);
}
.card-icon.coral { background: #ffe6e2; }
.card-icon.gold { background: var(--gold-soft); }
.card-icon svg { width: 30px; height: 30px; }
.card-link { font-weight: 800; color: var(--teal-dark); display: inline-flex; align-items: center; gap: 6px; }

.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .card-icon { flex: 0 0 auto; }

/* ---------- Service detail rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 56px; }
.svc-row:nth-child(even) .svc-media { order: -1; }
.svc-media .photo-ph { min-height: 300px; }
.badge-lead { background: var(--gold); color: #5a3c00; font-weight: 800; padding: 5px 14px; border-radius: var(--radius-pill); font-size: 0.8rem; display: inline-block; margin-bottom: 12px; }

/* ---------- Lists ---------- */
.checks { list-style: none; padding: 0; margin: 18px 0; }
.checks li { position: relative; padding-left: 32px; margin-bottom: 10px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-family: "Quicksand", var(--font);
  font-size: 1.08rem;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--teal); font-weight: 400; transition: transform 0.2s; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 16px; color: var(--ink-soft); }

/* ---------- Area / pill links ---------- */
.area-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.area-pills a {
  background: var(--white); border: 2px solid var(--teal-soft);
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-weight: 800; color: var(--teal-dark);
}
.area-pills a:hover { background: var(--teal-soft); text-decoration: none; transform: translateY(-2px); }
.area-pills a.flagship { border-color: var(--gold); background: var(--gold-soft); color: #a96a00; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--teal), var(--teal-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 24px; font-size: 1.12rem; }
.cta-band .btn-ghost { background: #fff; border-color: #fff; }

/* ---------- Products ---------- */
.disclosure {
  background: var(--gold-soft);
  border: 1px solid #f3d9a8;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.95rem;
  color: #6b5328;
  margin-bottom: 28px;
}
.disclosure a { color: #a96a00; font-weight: 800; }
.product-card { display: flex; flex-direction: column; }
.product-card .photo-ph { min-height: 170px; margin-bottom: 14px; }
.product-card h3 { font-size: 1.12rem; }
.product-card p { font-size: 0.96rem; color: var(--ink-soft); flex: 1; }
.tag-amazon { background: #ff9900; color: #1a1a1a; }
.tag-chewy { background: #1c49c2; color: #fff; }

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .photo-ph { border-radius: 0; min-height: 180px; border: none; border-bottom: 1px solid var(--line); }
.post-card .post-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--teal-dark); margin-bottom: 8px; }
.tofu { color: var(--teal-dark); }
.mofu { color: #a96a00; }
.bofu { color: var(--coral-dark); }
.post-card h3 { font-size: 1.18rem; flex: 1; }

.article { max-width: 760px; margin: 0 auto; }
.article p, .article li { font-size: 1.08rem; }
.article h2 { margin-top: 2em; }
.article h3 { margin-top: 1.6em; }
.article ul, .article ol { padding-left: 1.3em; }
.article li { margin-bottom: 0.5em; }
.article .photo-ph { margin: 28px 0; }
.byline { color: var(--ink-soft); font-weight: 700; margin-bottom: 28px; font-size: 0.95rem; }
.callout {
  background: var(--teal-soft); border-left: 5px solid var(--teal);
  border-radius: 0 14px 14px 0; padding: 18px 24px; margin: 28px 0;
}
.callout p:last-child { margin: 0; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 0.9rem; color: var(--ink-soft); padding: 18px 0 0; font-weight: 600; }
.crumbs a { color: var(--teal-dark); }

/* ---------- Calendar table ---------- */
.cal-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cal-table th, .cal-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.cal-table th { background: var(--teal-soft); color: var(--teal-dark); font-family: "Quicksand", var(--font); }
.cal-table tr:hover td { background: #fcfbf8; }
.pill { display: inline-block; padding: 3px 10px; border-radius: var(--radius-pill); font-size: 0.74rem; font-weight: 800; }
.pill.tofu { background: var(--teal-soft); color: var(--teal-dark); }
.pill.mofu { background: var(--gold-soft); color: #a96a00; }
.pill.bofu { background: #ffe6e2; color: var(--coral-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cdd6e0; padding: 56px 0 28px; margin-top: 24px; }
.site-footer a { color: #cdd6e0; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 0.95rem; }
.footer-brand svg { height: 40px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.95rem; color: #aab6c2; max-width: 280px; }
.nap { font-size: 0.95rem; line-height: 1.8; }
.nap strong { color: #fff; }
.footer-bottom { border-top: 1px solid #3a4654; margin-top: 36px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.88rem; color: #9aa7b4; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: #3a4654; display: grid; place-items: center; }
.footer-social a:hover { background: var(--teal); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 14px; }
.muted { color: var(--ink-soft); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 1fr; gap: 24px; }
  .svc-row:nth-child(even) .svc-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .section { padding: 52px 0; }
  .nav-links {
    position: fixed; inset: 64px 12px auto 12px;
    flex-direction: column; align-items: stretch;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 12px; gap: 4px;
    bo