/* =========================================================
   Hivaro — shared stylesheet
   Brand tokens live at the top — change once, updates everywhere.
   Redesign: yellow/black/coral "fun modern" brand, built around
   the Buzz mascot logo. Replaces the earlier navy/blue editorial look.
   ========================================================= */

:root {
  --yellow: #FFC629;
  --yellow-deep: #FFB300;
  --yellow-soft: #FFF3D1;
  --ink: #16181D;
  --navy: var(--ink); /* legacy alias — old markup/inline styles reference var(--navy) */
  --muted: #5B5D67;
  --white: #FFFFFF;
  --cream: #FFFCF4;
  --coral: #FF5A3C;
  --sky: #3FC1E0;
  --green: #1FB978;
  --success: var(--green);
  --danger: var(--coral);
  --bg: #FFFFFF;
  --border: rgba(22,24,29,.14);
  --gold: var(--yellow);
  --gold-dark: var(--yellow-deep);
  --blue: var(--ink); /* legacy alias for old inline references */
  --blue-dark: var(--ink);
  --blue-light: var(--yellow-soft);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fredoka', 'Inter', sans-serif;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 24px;
  --b: 3px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-lg: 9px 9px 0 var(--ink);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: var(--b);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn:hover { transform: translate(-2px, -2px); }
.btn:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink) !important; }
.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow); }
.btn-primary:hover { box-shadow: 8px 8px 0 var(--ink); }
.btn-dark { background: var(--ink); color: var(--yellow); box-shadow: 6px 6px 0 var(--yellow-deep); }
.btn-dark:hover { box-shadow: 8px 8px 0 var(--yellow-deep); }
.btn-ghost { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { box-shadow: var(--shadow); }
.btn-light { background: var(--white); color: var(--ink); box-shadow: 6px 6px 0 rgba(0,0,0,.35); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo img { height: 38px; width: auto; }
.logo svg { width: 30px; height: 30px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.nav-links a:hover { color: var(--coral); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .mobile-menu.open {
    display: flex;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 20px;
  border-top: 3px solid var(--ink);
  background: var(--cream);
}
.mobile-menu a {
  padding: 12px 4px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid rgba(22,24,29,.12);
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  margin-bottom: 20px;
  transform: rotate(-2deg);
}
.chip { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--ink); font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 999px; border: 2px solid var(--ink); transform: rotate(-2deg); }
h1, h2, h3 { color: var(--ink); margin: 0; font-family: var(--font-display); }
h1 { font-size: 64px; line-height: 1.04; font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: 42px; line-height: 1.08; font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.accent { color: var(--coral); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 14px; }
.lede { font-size: 19px; color: var(--muted); max-width: 540px; }

@media (max-width: 640px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  section { padding: 60px 0; }
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--coral);
  z-index: 200;
}

/* ---------- Hero ---------- */
.hero { padding: 64px 0 20px; overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -160px;
  width: 480px; height: 480px;
  background: var(--yellow-soft);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
}
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 18px; height: 18px; color: var(--green); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 460px; }
.hero-visual img { width: 280px; transform: rotate(-3deg); filter: drop-shadow(10px 12px 0 rgba(22,24,29,.12)); }
.floaty {
  position: absolute;
  display: flex; align-items: center; gap: 9px;
  background: var(--white);
  border: var(--b);
  border-radius: 999px;
  padding: 9px 16px 9px 9px;
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 700;
  animation: bob 4.2s ease-in-out infinite;
}
.floaty .ic { width: 30px; height: 30px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floaty .ic svg { width: 16px; height: 16px; }
.f1 { top: 2%; left: 0%; animation-delay: 0s; }
.f2 { top: 8%; right: -2%; animation-delay: .9s; }
.f3 { bottom: 22%; left: -4%; animation-delay: 1.8s; }
.f4 { bottom: 4%; right: 6%; animation-delay: 2.7s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 900px) { .hero-visual { height: 400px; } .hero-visual img { width: 230px; } }
@media (max-width: 520px) {
  .floaty { font-size: 11.5px; padding: 6px 12px 6px 6px; }
  .floaty .ic { width: 24px; height: 24px; }
  .f1 { left: -4%; } .f2 { right: -6%; }
}

/* ---------- What we deliver (bento) ---------- */
.deliver-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.dcard { grid-column: span 2; background: var(--white); border: var(--b); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.dcard:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); }
.dcard:nth-child(1) { transform: rotate(-1deg); } .dcard:nth-child(1):hover { transform: rotate(-1deg) translate(-3px, -3px); }
.dcard:nth-child(2) { transform: rotate(1deg); } .dcard:nth-child(2):hover { transform: rotate(1deg) translate(-3px, -3px); }
.dcard:nth-child(3) { transform: rotate(-1deg); } .dcard:nth-child(3):hover { transform: rotate(-1deg) translate(-3px, -3px); }
.dcard.wide { grid-column: span 3; }
.dcard:nth-child(4) { transform: rotate(1deg); } .dcard:nth-child(4):hover { transform: rotate(1deg) translate(-3px, -3px); }
.dcard:nth-child(5) { transform: rotate(-1deg); } .dcard:nth-child(5):hover { transform: rotate(-1deg) translate(-3px, -3px); }
@media (max-width: 900px) { .deliver-grid { grid-template-columns: repeat(2, 1fr); } .dcard { grid-column: span 1 !important; } .dcard.wide { grid-column: span 2 !important; } }
@media (max-width: 560px) { .deliver-grid { grid-template-columns: 1fr; } .dcard.wide { grid-column: span 1 !important; } }
.dcard .ic-badge { width: 50px; height: 50px; border-radius: 14px; background: var(--ink); color: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.dcard.alt .ic-badge { background: var(--coral); color: var(--white); }
.dcard h3 { font-size: 20px; margin-bottom: 8px; }
.dcard p { color: var(--muted); font-size: 15px; margin: 0; }

/* legacy bento alias (kept in case older markup references it) */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-grid .card.span-2 { grid-column: span 2; }
@media (max-width: 760px) { .bento-grid { grid-template-columns: 1fr; } .bento-grid .card.span-2 { grid-column: span 1; } }
.card { background: var(--white); border: var(--b); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.icon-badge { width: 46px; height: 46px; border-radius: 12px; background: var(--ink); color: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Speed / process strip ---------- */
.speed-strip { background: var(--ink); color: var(--white); }
.speed-strip .section-head h2 { color: var(--white); }
.speed-strip .section-head p { color: #C9CBD4; }
.steps4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 860px) { .steps4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps4 { grid-template-columns: 1fr; } }
.step4 { background: rgba(255,255,255,.05); border: 2px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 24px; }
.step4 .num { width: 34px; height: 34px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-weight: 800; font-family: var(--font-display); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step4 h3 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.step4 p { color: #C9CBD4; font-size: 14.5px; margin: 0; }

/* legacy 3-step layout (still used on the dog-grooming landing page) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step-num {
  font-size: 13px; font-weight: 800; color: var(--ink);
  background: var(--yellow); width: 32px; height: 32px;
  border: 2px solid var(--ink);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Showcase (replaces single case study) ---------- */
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .showcase-grid { grid-template-columns: 1fr; } }
.showcase-card { background: var(--white); border: var(--b); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.showcase-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.showcase-card .work-visual { border-right: none; border-bottom: 3px solid var(--ink); min-height: 150px; padding: 20px; }
.showcase-card .info { padding: 20px; }
.showcase-card h3 { font-size: 17px; margin-bottom: 6px; }
.showcase-card p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* ---------- Work / case studies (kept for future re-use) ---------- */
.work-card { background: var(--white); border: var(--b); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-lg); }
@media (max-width: 800px) { .work-card { grid-template-columns: 1fr; } }
.work-visual { background: var(--yellow-soft); padding: 34px; display: flex; align-items: center; justify-content: center; min-height: 220px; border-right: 3px solid var(--ink); }
@media (max-width: 800px) { .work-visual { border-right: none; border-bottom: 3px solid var(--ink); } }
.work-visual .browser { width: 100%; background: var(--white); border-radius: 10px; overflow: hidden; border: 2px solid var(--ink); }
.work-visual .browser .bar { display: flex; gap: 5px; padding: 9px 12px; background: var(--cream); border-bottom: 2px solid var(--ink); }
.work-visual .browser .bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); opacity: .25; }
.work-visual .browser .body { padding: 18px; }
.mock-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); padding: 3px 9px; background: var(--yellow); border-radius: 6px; display: inline-block; margin-bottom: 10px; }
.mock-line { height: 9px; background: var(--cream); border: 1px solid var(--ink); opacity: .4; border-radius: 4px; margin-bottom: 8px; }
.mock-line.short { width: 55%; }
.mock-line.accentline { background: var(--coral); width: 40%; opacity: 1; border: none; }
.mock-swatch { display: flex; gap: 8px; margin-top: 10px; }
.mock-chip { flex: 1; height: 44px; border-radius: 8px; background: var(--white); border: 2px solid var(--ink); }
.work-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.work-tag { display: inline-block; font-size: 12px; font-weight: 800; color: var(--ink); background: var(--yellow); padding: 5px 12px; border-radius: 999px; border: 2px solid var(--ink); margin-bottom: 14px; width: fit-content; }
.work-body h3 { font-size: 24px; margin-bottom: 10px; }
.work-body p { color: var(--muted); margin: 0 0 18px; }
.work-links { display: flex; gap: 18px; flex-wrap: wrap; }
.work-links a { font-weight: 800; color: var(--ink); font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }
.work-links a svg { width: 16px; height: 16px; }
.work-list { display: flex; flex-direction: column; gap: 22px; }

/* ---------- Comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare-col { border-radius: var(--radius); padding: 30px; border: var(--b); }
.compare-col.bad { background: var(--white); transform: rotate(-1deg); }
.compare-col.good { background: var(--yellow); transform: rotate(1deg); box-shadow: var(--shadow); }
@media (max-width: 760px) { .compare-col.bad, .compare-col.good { transform: none; } }
.compare-col h3 { margin-bottom: 18px; font-size: 20px; }
.compare-row { display: flex; gap: 12px; padding: 12px 0; border-top: 2px dashed rgba(22,24,29,.18); }
.compare-row:first-of-type { border-top: none; }
.compare-row svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
.compare-col.bad svg { color: var(--coral); }
.compare-col.good svg { color: var(--ink); }
.compare-row strong { display: block; font-size: 15px; }
.compare-row span { font-size: 13.5px; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 880px; margin: 0 auto; }
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--white); border: var(--b); border-radius: var(--radius); padding: 34px; position: relative; box-shadow: var(--shadow); }
.price-card.featured { background: var(--ink); color: var(--white); box-shadow: 6px 6px 0 var(--yellow); }
.price-badge { position: absolute; top: -15px; left: 28px; background: var(--coral); color: var(--white); font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 999px; border: 2px solid var(--ink); }
.price-card h3 { font-size: 23px; margin-bottom: 8px; }
.price-card.featured h3 { color: var(--white); }
.price-card > p.desc { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.price-card.featured .desc { color: #C9CBD4; }
.price-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; gap: 10px; font-size: 14.5px; }
.price-list svg { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; margin-top: 1px; }
.price-card.featured .price-list svg { color: var(--yellow); }
.price-note { text-align: center; color: var(--muted); font-size: 14.5px; margin-top: 32px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 2px solid rgba(22,24,29,.14); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 4px; background: none; border: none; cursor: pointer; font-size: 16.5px; font-weight: 700; color: var(--ink); text-align: left; font-family: var(--font-display); }
.faq-q svg { width: 20px; height: 20px; color: var(--coral); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a p { padding: 0 4px 20px; color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); border-radius: var(--radius); padding: 60px; text-align: center; color: var(--white); }
.cta-band h2 { color: var(--white); margin-bottom: 14px; font-size: 36px; }
.cta-band p { color: #C9CBD4; max-width: 480px; margin: 0 auto 28px; font-size: 16px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info h2 { margin-bottom: 14px; font-size: 34px; }
.contact-info p { color: var(--muted); margin-bottom: 26px; }
.contact-detail { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 15px; font-weight: 600; }
.contact-detail svg { width: 19px; height: 19px; color: var(--coral); }

.form-card { background: var(--cream); border: var(--b); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  font-size: 16px; /* 16px+ stops iOS Safari auto-zooming on focus */
  font-family: inherit;
  background: var(--white);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--coral);
}
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success svg { width: 44px; height: 44px; color: var(--green); margin: 0 auto 14px; }

/* ---------- Footer ---------- */
footer { border-top: 3px solid var(--ink); padding: 46px 0 30px; background: var(--cream); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--muted); font-weight: 600; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; border-top: 2px solid rgba(22,24,29,.14); padding-top: 20px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 18px; left: 18px; right: 18px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  padding: 20px 22px;
  box-shadow: 8px 8px 0 var(--yellow);
  z-index: 100;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 13.5px; color: #D7D9E0; margin: 0 0 14px; }
.cookie-banner a { text-decoration: underline; color: var(--yellow); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid var(--white);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  font-family: var(--font-body);
}
.cookie-accept { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.cookie-decline { background: transparent; color: var(--white); }

/* ---------- Legal pages ---------- */
.legal-body { max-width: 720px; margin: 0 auto; padding: 60px 0 100px; }
.legal-body h1 { font-size: 32px; margin-bottom: 6px; }
.legal-body .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal-body h2 { font-size: 20px; margin: 34px 0 12px; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 15px; line-height: 1.7; }
.legal-body ul { padding-left: 20px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--coral); margin-bottom: 30px; font-size: 14.5px; }
.back-link svg { width: 17px; height: 17px; }

/* TODO marker used inline in copy that still needs Jonny's input */
.todo {
  background: var(--yellow-soft);
  color: #8A6300;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92em;
}

/* ---------- Landing-page-only tweaks (dog-grooming etc.) ---------- */
.lp-header { padding: 18px 0; }
.lp-header .nav { padding: 0; }
.stat-strip { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.stat-strip .stat { text-align: center; }
.stat-strip .num { font-size: 30px; font-weight: 800; color: var(--ink); font-family: var(--font-display); }
.stat-strip .label { font-size: 13px; color: var(--muted); }

/* =========================================================
   Rebuild additions — trust bar, guarantee, about, pricing
   amounts, WhatsApp button, accessibility focus states.
   ========================================================= */

/* ---- Accessibility: visible keyboard focus everywhere ---- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .faq-q:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---- Trust bar ---- */
.trustbar-section { padding: 34px 0; background: var(--yellow-soft); border-bottom: 3px solid var(--ink); }
.trustbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .trustbar { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 520px) { .trustbar { grid-template-columns: 1fr; } }
.trust-item { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.4; }
.trust-item svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; padding: 3px; }
.trust-item strong { display: block; font-weight: 800; }
.trust-item span { color: var(--muted); }
.trust-item strong { color: var(--ink); }

/* ---- Real work: points + honest note + extra ---- */
.work-points { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 9px; }
.work-points li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--muted); }
.work-points li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; }
.honest-note { display: flex; gap: 14px; align-items: flex-start; max-width: 780px; margin: 30px auto 0; background: var(--cream); border: var(--b); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.honest-note svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--coral); margin-top: 2px; }
.honest-note p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.honest-note strong { color: var(--ink); }
.honest-note a { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--yellow); }
.work-extra { text-align: center; margin-top: 26px; font-size: 15px; font-weight: 600; color: var(--muted); }
.work-extra a { color: var(--ink); border-bottom: 2px solid var(--yellow); font-weight: 700; }

/* ---- Guarantee ---- */
.guarantee-section { background: var(--white); }
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .guarantee-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .guarantee-grid { grid-template-columns: 1fr; } }
.g-card { background: var(--cream); border: var(--b); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.g-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.g-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--yellow); color: var(--ink); border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.g-ic svg { width: 24px; height: 24px; }
.g-card h3 { font-size: 17px; margin-bottom: 8px; }
.g-card p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.55; }

/* ---- Pricing amounts ---- */
.price-amount { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1; color: var(--ink); margin: 6px 0 4px; letter-spacing: -0.02em; }
.price-card.featured .price-amount { color: var(--yellow); }
.price-amount .from { font-size: 15px; font-weight: 600; color: var(--muted); vertical-align: middle; margin-right: 4px; }
.price-card.featured .price-amount .from { color: #C9CBD4; }
.price-amount .plus { font-size: 22px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.price-card.featured .price-amount .plus { color: #fff; }
.price-amount .per { font-size: 14px; font-weight: 600; }
.price-sub { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); margin-bottom: 18px; }
.price-card.featured .price-sub { color: #C9CBD4; }
.launch-banner { max-width: 880px; margin: 0 auto 30px; display: flex; gap: 14px; align-items: center; background: var(--yellow); border: var(--b); border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow-sm); }
.launch-banner svg { width: 30px; height: 30px; flex-shrink: 0; color: var(--ink); }
.launch-banner p { margin: 0; font-size: 14.5px; color: var(--ink); line-height: 1.55; }
.launch-banner strong { font-weight: 800; }

.price-changes { max-width: 880px; margin: 30px auto 0; background: var(--yellow-soft); border: 2px solid var(--ink); border-radius: var(--radius); padding: 20px 24px; }
.price-changes h4 { margin: 0 0 6px; font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.price-changes p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---- About Jonny ---- */
.about-section { background: var(--cream); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.about-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .about-wrap { grid-template-columns: 1fr; gap: 30px; } }
.about-photo { position: relative; }
.about-photo img { width: 100%; max-width: 320px; aspect-ratio: 1 / 1; object-fit: cover; background: var(--yellow-soft); border: var(--b); border-radius: var(--radius); box-shadow: var(--shadow); }
.about-badge { position: absolute; bottom: -12px; left: 18px; background: var(--ink); color: var(--yellow); font-size: 12px; font-weight: 800; padding: 7px 14px; border-radius: 999px; border: 2px solid var(--ink); }
.about-body h2 { margin-bottom: 14px; }
.about-body p { color: var(--muted); font-size: 16px; line-height: 1.65; margin: 0 0 14px; }
.about-body a { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--yellow); }
.about-sign { font-weight: 700; color: var(--ink) !important; }
.about-body .btn { margin-top: 8px; }

/* ---- Contact actions (WhatsApp + calendar) ---- */
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 6px 0 26px; }
.wa-btn { background: #25D366; color: var(--ink); box-shadow: var(--shadow-sm); }
.wa-btn:hover { box-shadow: var(--shadow); }
.wa-btn svg { width: 20px; height: 20px; }

/* ---- Form privacy microcopy ---- */
.form-privacy { font-size: 12.5px; color: var(--muted); text-align: center; margin: 14px 0 0; }
.form-privacy a { color: var(--ink); text-decoration: underline; font-weight: 600; }
