/* ============================================================
   Paws & Co Vet — Warm Veterinary Care Design System
   Soft cream · cheerful teal · warm coral · rounded friendly type
   ============================================================ */

:root {
  /* ---- Palette ---- */
  --cream-50:  #fffdf8;
  --cream-100: #fbf6ec;
  --cream-200: #f5ecdc;
  --cream-300: #ecdfc8;

  --teal-900: #0c3b3a;
  --teal-800: #11514e;
  --teal-700: #15655f;
  --teal-600: #1c8079;
  --teal-500: #2aa39a;
  --teal-400: #5cc1b8;
  --teal-300: #93d8d0;
  --teal-100: #d8f0ec;

  --coral-700: #d4583f;
  --coral-600: #ec6a4d;
  --coral-500: #ff7e5f;
  --coral-300: #ffb39e;
  --coral-100: #ffe4da;

  --sun-400: #f6b656;
  --sun-200: #fbdfa6;

  --ink:      #1f2a2a;
  --ink-soft: #4a5a59;
  --muted:    #7a8a88;
  --line:     rgba(17, 81, 78, 0.12);
  --white:    #ffffff;

  /* ---- Type ---- */
  --display: "Fraunces", Georgia, serif;
  --rounded: "Baloo 2", "Trebuchet MS", sans-serif;
  --body:    "Nunito", system-ui, sans-serif;

  /* ---- Shape & motion ---- */
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 34px;
  --r-xl: 48px;
  --shadow-xs: 0 3px 12px rgba(17, 81, 78, 0.07);
  --shadow-sm: 0 8px 24px rgba(17, 81, 78, 0.09);
  --shadow:    0 20px 50px rgba(17, 81, 78, 0.14);
  --shadow-lg: 0 38px 90px rgba(12, 59, 58, 0.20);
  --shadow-coral: 0 16px 38px rgba(255, 126, 95, 0.34);
  --shadow-teal:  0 16px 38px rgba(28, 128, 121, 0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream-100);
  line-height: 1.72;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.06; letter-spacing: -0.015em; color: var(--teal-900); }
h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
em { font-style: italic; color: var(--coral-600); }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.cream { background: var(--cream-50); }
.tealwash { background: linear-gradient(180deg, var(--teal-100), var(--cream-100)); }
.coralwash { background: linear-gradient(180deg, var(--coral-100), var(--cream-100)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--rounded); font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.005em; padding: 0.92rem 1.75rem; border-radius: 100px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-700));
  color: var(--white); box-shadow: var(--shadow-coral);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(255, 126, 95, 0.45); }
.btn-teal {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white); box-shadow: var(--shadow-teal);
}
.btn-teal:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(28, 128, 121, 0.42); }
.btn-ghost { background: var(--white); border-color: var(--line); color: var(--teal-800); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: var(--teal-400); color: var(--teal-600); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
.btn-light:hover { background: #fff; color: var(--teal-700); transform: translateY(-3px); }
.btn-lg { padding: 1.08rem 2.1rem; font-size: 1.05rem; }

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--rounded); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-600);
  margin-bottom: 1.1rem;
}
.eyebrow svg { width: 18px; height: 18px; color: var(--coral-500); }
.eyebrow::before { content: ""; width: 26px; height: 3px; background: linear-gradient(90deg, var(--teal-400), var(--coral-300)); border-radius: 3px; }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--teal-300); }
.eyebrow.light::before { background: linear-gradient(90deg, var(--teal-300), var(--coral-300)); }
.sec-head { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.sec-head.center { text-align: center; max-width: 740px; margin-inline: auto; }
.sec-head .lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 580px; margin-top: 1rem; }
.sec-head.center .lead { margin-inline: auto; }
.split-head { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2rem; align-items: end; }
.split-head p { color: var(--ink-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.7rem 0;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
}
.site-header.shrink {
  padding: 0.3rem 0;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--rounded); font-weight: 800; font-size: 1.5rem;
  color: var(--teal-800); display: inline-flex; align-items: center; gap: 0.45rem;
  letter-spacing: -0.01em;
}
.brand-mark .paw { width: 30px; height: 30px; color: var(--coral-500); flex: none; }
.brand-sub { font-family: var(--rounded); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-left: 2.55rem; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  font-family: var(--rounded); font-weight: 600; font-size: 0.96rem;
  color: var(--teal-800); padding: 0.5rem 0.95rem; border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}
.nav-links a:hover { background: var(--teal-100); color: var(--teal-700); }
.nav-links a.active { background: var(--coral-100); color: var(--coral-700); }

.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--rounded); font-weight: 700; font-size: 0.92rem; color: var(--teal-700);
}
.nav-phone svg { width: 18px; height: 18px; color: var(--coral-500); }

.nav-toggle { display: none; background: var(--teal-100); border: none; width: 46px; height: 46px; border-radius: 14px; cursor: pointer; position: relative; }
.nav-toggle span { display: block; width: 22px; height: 2.4px; background: var(--teal-800); border-radius: 3px; margin: 4.5px auto; transition: transform 0.35s var(--ease), opacity 0.3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 70% at 88% 8%, var(--teal-100), transparent 60%),
    radial-gradient(50% 60% at 5% 90%, var(--coral-100), transparent 60%),
    var(--cream-100);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(8px); z-index: -1; opacity: 0.5; }
.hero-blob.a { width: 320px; height: 320px; top: -80px; right: -60px; background: radial-gradient(circle at 30% 30%, var(--teal-300), transparent 70%); }
.hero-blob.b { width: 260px; height: 260px; bottom: -60px; left: -40px; background: radial-gradient(circle at 30% 30%, var(--coral-300), transparent 70%); }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy h1 { margin: 0.4rem 0 1.2rem; }
.hero-tag { font-size: 1.15rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-trust { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.8rem; font-size: 0.95rem; color: var(--ink-soft); }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--cream-100);
  margin-left: -12px; display: grid; place-items: center; font-family: var(--rounded); font-weight: 700; color: #fff; font-size: 0.9rem;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust b { color: var(--teal-800); }
.stars { color: var(--sun-400); letter-spacing: 2px; }

.hero-media { position: relative; }
.hero-frame {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 8px solid var(--white); position: relative; aspect-ratio: 4/3.4;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,59,58,0.18));
}
.hero-badge {
  position: absolute; top: 22px; left: -26px; background: var(--white);
  border-radius: var(--r); padding: 0.9rem 1.2rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-badge .ic { width: 44px; height: 44px; border-radius: 14px; background: var(--teal-100); display: grid; place-items: center; flex: none; }
.hero-badge .ic svg { width: 24px; height: 24px; color: var(--teal-600); }
.hero-badge .t b { display: block; font-family: var(--rounded); font-weight: 800; color: var(--teal-800); font-size: 1.05rem; }
.hero-badge .t span { font-size: 0.8rem; color: var(--muted); }
.hero-float {
  position: absolute; bottom: 18px; right: -22px; background: var(--white);
  border-radius: var(--r); padding: 0.85rem 1.15rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.7rem;
}
.hero-float .dot { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--coral-500), var(--coral-700)); display: grid; place-items: center; flex: none; }
.hero-float .dot svg { width: 22px; height: 22px; color: #fff; }
.hero-float b { display: block; font-family: var(--rounded); font-weight: 800; color: var(--teal-800); }
.hero-float span span { font-size: 0.78rem; color: var(--muted); display: block; }

/* paw trail divider */
.paw-trail { display: flex; justify-content: center; gap: 2.2rem; padding: 1.5rem 0 0; }
.paw-trail svg { width: 26px; height: 26px; color: var(--teal-300); opacity: 0.7; }
.paw-trail svg:nth-child(even) { color: var(--coral-300); transform: translateY(10px); }

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--teal-800); padding: 1.4rem 0; overflow: hidden; }
.trust-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.6rem; }
.trust-strip .item { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--teal-100); font-family: var(--rounded); font-weight: 600; font-size: 0.95rem; }
.trust-strip .item svg { width: 22px; height: 22px; color: var(--teal-300); }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--cream-50); padding: clamp(3rem, 5vw, 4.5rem) 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.6rem 1rem; border-radius: var(--r-lg); background: var(--cream-100); border: 1.5px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.stat .n { font-family: var(--display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.1rem); color: var(--teal-700); line-height: 1; }
.stat .n .suf { color: var(--coral-500); }
.stat .l { font-family: var(--rounded); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.5rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc-card {
  background: var(--white); border-radius: var(--r-lg); padding: 2rem 1.8rem;
  border: 1.5px solid var(--line); box-shadow: var(--shadow-xs);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--teal-400), var(--coral-400, var(--coral-500))); opacity: 0; transition: opacity 0.4s; }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-ic { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; margin-bottom: 1.3rem; background: var(--teal-100); }
.svc-ic svg { width: 32px; height: 32px; color: var(--teal-600); }
.svc-card:nth-child(3n+2) .svc-ic { background: var(--coral-100); }
.svc-card:nth-child(3n+2) .svc-ic svg { color: var(--coral-600); }
.svc-card:nth-child(3n) .svc-ic { background: var(--sun-200); }
.svc-card:nth-child(3n) .svc-ic svg { color: var(--coral-700); }
.svc-card h3 { margin-bottom: 0.6rem; }
.svc-card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 1.1rem; }
.svc-card .more { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--rounded); font-weight: 700; font-size: 0.9rem; color: var(--teal-600); }
.svc-card .more svg { transition: transform 0.35s var(--ease); }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); border: 7px solid var(--white); aspect-ratio: 4/3.6; }
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.split-media:hover .frame img { transform: scale(1.06); }
.split-media .tab {
  position: absolute; bottom: -22px; left: 24px; background: var(--white);
  border-radius: var(--r); padding: 0.85rem 1.15rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.7rem;
}
.split-media .tab .ic { width: 44px; height: 44px; border-radius: 13px; background: var(--coral-100); display: grid; place-items: center; flex: none; }
.split-media .tab .ic svg { width: 24px; height: 24px; color: var(--coral-600); }
.split-media .tab b { display: block; font-family: var(--rounded); font-weight: 800; color: var(--teal-800); }
.split-media .tab span { font-size: 0.8rem; color: var(--muted); }
.split-copy .lead { font-size: 1.12rem; color: var(--ink-soft); margin: 1.1rem 0 1.6rem; }

.feature-list { display: flex; flex-direction: column; gap: 1.2rem; margin: 1.5rem 0; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .ico { width: 46px; height: 46px; border-radius: 14px; background: var(--teal-100); display: grid; place-items: center; flex: none; }
.feature-list .ico svg { width: 24px; height: 24px; color: var(--teal-600); }
.feature-list h4 { font-family: var(--rounded); font-weight: 700; font-size: 1.08rem; color: var(--teal-800); margin-bottom: 0.2rem; }
.feature-list p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { background: var(--white); border-radius: var(--r-lg); padding: 2rem 1.6rem; border: 1.5px solid var(--line); position: relative; box-shadow: var(--shadow-xs); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--display); font-weight: 600; font-size: 2.6rem; color: var(--coral-300); line-height: 1; margin-bottom: 0.8rem; }
.step h4 { font-family: var(--rounded); font-weight: 700; font-size: 1.15rem; color: var(--teal-800); margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.member { text-align: center; }
.member .ph { aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 5px solid var(--white); position: relative; background: linear-gradient(160deg, var(--teal-100), var(--coral-100)); }
.member .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.member:hover .ph img { transform: scale(1.07); }
.member h4 { font-family: var(--rounded); font-weight: 700; font-size: 1.12rem; color: var(--teal-800); margin: 1rem 0 0.15rem; }
.member span { font-size: 0.88rem; color: var(--coral-600); font-family: var(--rounded); font-weight: 600; }
.member-init { width: 100%; height: 100%; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 3rem; color: var(--teal-700); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-band { background: linear-gradient(160deg, var(--teal-800), var(--teal-900)); position: relative; overflow: hidden; }
.quote-band::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(92,193,184,0.25), transparent 70%); top: -120px; right: -100px; }
.quote-band::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,126,95,0.22), transparent 70%); bottom: -120px; left: -80px; }
.quote-band h2, .quote-band .eyebrow { position: relative; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; position: relative; }
.qcard { background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.14); border-radius: var(--r-lg); padding: 2rem 1.8rem; backdrop-filter: blur(6px); transition: transform 0.4s var(--ease), background 0.3s; }
.qcard:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.qcard .stars { font-size: 1.05rem; }
.qcard blockquote { color: #fff; font-size: 1.04rem; line-height: 1.65; margin: 0.9rem 0 1.4rem; }
.qmeta { display: flex; align-items: center; gap: 0.8rem; }
.qmeta .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--rounded); font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--coral-500), var(--coral-700)); flex: none; }
.qmeta b { color: #fff; font-family: var(--rounded); display: block; }
.qmeta span { color: var(--teal-300); font-size: 0.85rem; }

/* ============================================================
   JOURNAL / BLOG
   ============================================================ */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post {
  background: var(--white); border-radius: var(--r-lg); padding: 1.8rem; border: 1.5px solid var(--line);
  box-shadow: var(--shadow-xs); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.post .meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.8rem; }
.post .type { background: var(--teal-100); color: var(--teal-700); font-family: var(--rounded); font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 100px; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; }
.post .meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--coral-300); }
.post h3 { font-size: 1.28rem; margin-bottom: 0.6rem; }
.post h3 a { transition: color 0.3s; }
.post:hover h3 a { color: var(--coral-600); }
.post p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.1rem; }
.more { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--rounded); font-weight: 700; font-size: 0.9rem; color: var(--teal-600); }
.more svg { transition: transform 0.35s var(--ease); }
.post:hover .more svg, .more:hover svg { transform: translateX(4px); }
.sec-foot { text-align: center; margin-top: 3rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: clamp(4rem, 7vw, 6.5rem) 0; text-align: center; background: linear-gradient(135deg, var(--coral-500), var(--coral-700)); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% -20%, rgba(255,255,255,0.25), transparent 70%); }
.cta-band .wrap { position: relative; max-width: 760px; }
.cta-band h2 { color: #fff; margin: 0.4rem 0 1rem; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1.12rem; margin-bottom: 1.9rem; }
.cta-band .hero-actions { justify-content: center; }
.cta-paws { position: absolute; inset: 0; pointer-events: none; opacity: 0.16; }
.cta-paws svg { position: absolute; width: 60px; height: 60px; color: #fff; }
.cta-paws svg:nth-child(1) { top: 12%; left: 8%; transform: rotate(-20deg); }
.cta-paws svg:nth-child(2) { bottom: 14%; right: 10%; transform: rotate(25deg); width: 80px; height: 80px; }
.cta-paws svg:nth-child(3) { top: 30%; right: 22%; transform: rotate(10deg); width: 40px; height: 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal-900); color: var(--teal-100); padding: clamp(3.5rem, 6vw, 5rem) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-mark { color: #fff; }
.footer-brand p { color: var(--teal-300); margin: 1rem 0 1.4rem; font-size: 0.96rem; max-width: 320px; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 13px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background 0.3s, transform 0.3s; }
.footer-social a:hover { background: var(--coral-500); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; color: #fff; }
.footer-col h4 { font-family: var(--rounded); font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--teal-300); padding: 0.32rem 0; font-size: 0.95rem; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-nap { font-style: normal; color: var(--teal-300); font-size: 0.95rem; line-height: 2; }
.footer-nap a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding: 1.6rem 0; color: var(--teal-300); font-size: 0.86rem; }
.footer-disclaimer { background: var(--teal-800); color: var(--teal-300); text-align: center; font-size: 0.8rem; padding: 1rem 1.5rem; line-height: 1.6; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-head { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 4vw, 3.5rem); position: relative; overflow: hidden; background: linear-gradient(180deg, var(--teal-100), var(--cream-100)); }
.page-head::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,126,95,0.18), transparent 70%); top: -100px; right: -60px; }
.page-head .wrap { position: relative; }
.page-head h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 0.5rem 0 0.8rem; }
.page-head p { color: var(--ink-soft); font-size: 1.12rem; max-width: 560px; }
.crumbs { font-family: var(--rounded); font-weight: 600; font-size: 0.85rem; color: var(--muted); display: flex; gap: 0.5rem; align-items: center; }
.crumbs a:hover { color: var(--teal-600); }
.crumbs .sep { color: var(--coral-400, var(--coral-500)); }

/* ============================================================
   SERVICES PAGE — pricing & filter
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.8rem; }
.filter-btn {
  font-family: var(--rounded); font-weight: 600; font-size: 0.92rem;
  padding: 0.6rem 1.3rem; border-radius: 100px; border: 2px solid var(--line);
  background: var(--white); color: var(--teal-800); cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--teal-400); color: var(--teal-600); }
.filter-btn.active { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: #fff; border-color: transparent; box-shadow: var(--shadow-teal); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.price-card {
  background: var(--white); border-radius: var(--r-lg); padding: 1.9rem; border: 1.5px solid var(--line);
  box-shadow: var(--shadow-xs); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), opacity 0.4s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.price-card.hide { display: none; }
.price-card .tagrow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.price-card .cat { font-family: var(--rounded); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-600); background: var(--teal-100); padding: 0.25rem 0.75rem; border-radius: 100px; }
.price-card .pic { width: 50px; height: 50px; border-radius: 15px; background: var(--coral-100); display: grid; place-items: center; }
.price-card .pic svg { width: 26px; height: 26px; color: var(--coral-600); }
.price-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.price-card .desc { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1.2rem; flex: 1; }
.price-card .feats { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.3rem; }
.price-card .feats li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: var(--ink-soft); }
.price-card .feats svg { width: 18px; height: 18px; color: var(--teal-500); flex: none; }
.price-card .pricerow { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1.2rem; padding-top: 1.1rem; border-top: 1.5px solid var(--line); }
.price-card .from { font-size: 0.82rem; color: var(--muted); }
.price-card .amount { font-family: var(--display); font-weight: 600; font-size: 2.1rem; color: var(--teal-700); }
.price-card .per { font-size: 0.85rem; color: var(--muted); }
.price-card.featured { border-color: var(--coral-300); box-shadow: var(--shadow-sm); }
.price-card .badge { background: var(--coral-500); color: #fff; font-family: var(--rounded); font-weight: 700; font-size: 0.7rem; padding: 0.2rem 0.7rem; border-radius: 100px; letter-spacing: 0.05em; }

/* plans */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.plan { background: var(--white); border-radius: var(--r-lg); padding: 2.2rem 1.9rem; border: 2px solid var(--line); display: flex; flex-direction: column; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan.pop { border-color: var(--coral-500); background: linear-gradient(180deg, var(--coral-100), var(--white)); position: relative; }
.plan.pop .ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--coral-500), var(--coral-700)); color: #fff; font-family: var(--rounded); font-weight: 700; font-size: 0.74rem; padding: 0.35rem 1.1rem; border-radius: 100px; box-shadow: var(--shadow-coral); letter-spacing: 0.04em; }
.plan .pname { font-family: var(--rounded); font-weight: 800; font-size: 1.2rem; color: var(--teal-800); }
.plan .pprice { font-family: var(--display); font-weight: 600; font-size: 2.8rem; color: var(--teal-700); margin: 0.6rem 0 0.2rem; }
.plan .pprice .mo { font-family: var(--rounded); font-size: 1rem; color: var(--muted); font-weight: 600; }
.plan .pdesc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }
.plan ul { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.6rem; flex: 1; }
.plan ul li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--ink-soft); }
.plan ul svg { width: 19px; height: 19px; color: var(--teal-500); flex: none; margin-top: 3px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.6rem; align-items: start; }
.contact-form { background: var(--white); border-radius: var(--r-lg); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); border: 1.5px solid var(--line); }
.contact-form h3 { margin-bottom: 0.4rem; }
.contact-form > p { color: var(--ink-soft); margin-bottom: 1.6rem; font-size: 0.98rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--rounded); font-weight: 700; font-size: 0.86rem; color: var(--teal-800); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 0.85rem 1.05rem; border-radius: var(--r-sm); border: 2px solid var(--line);
  background: var(--cream-50); transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-400); box-shadow: 0 0 0 4px var(--teal-100); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
[data-form-note] { margin-top: 1rem; font-family: var(--rounded); font-weight: 700; font-size: 0.95rem; color: var(--teal-600); min-height: 1.4rem; }
[data-form-note].show { animation: pop 0.5s var(--ease); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.contact-aside { display: flex; flex-direction: column; gap: 1.4rem; }
.info-card { background: var(--white); border-radius: var(--r-lg); padding: 1.8rem; border: 1.5px solid var(--line); box-shadow: var(--shadow-xs); }
.info-card h4 { font-family: var(--rounded); font-weight: 800; font-size: 1.1rem; color: var(--teal-800); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.info-card h4 svg { width: 22px; height: 22px; color: var(--coral-500); }
.nap-line { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.85rem; color: var(--ink-soft); font-size: 0.96rem; }
.nap-line svg { width: 20px; height: 20px; color: var(--teal-500); flex: none; margin-top: 3px; }
.nap-line a:hover { color: var(--teal-600); }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-list .row { display: flex; justify-content: space-between; font-size: 0.95rem; padding: 0.35rem 0; border-bottom: 1px dashed var(--line); }
.hours-list .row span:first-child { font-family: var(--rounded); font-weight: 600; color: var(--teal-800); }
.hours-list .row.today { background: var(--coral-100); margin: 0 -0.6rem; padding: 0.45rem 0.6rem; border-radius: 10px; border: none; }
.hours-list .row .em { color: var(--coral-600); font-family: var(--rounded); font-weight: 700; }
.map-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1.5px solid var(--line); background: var(--teal-100); }
.map-card svg { display: block; width: 100%; height: auto; }
.emergency { background: linear-gradient(135deg, var(--coral-500), var(--coral-700)); color: #fff; border: none; }
.emergency h4 { color: #fff; }
.emergency h4 svg { color: #fff; }
.emergency p { color: rgba(255,255,255,0.92); font-size: 0.96rem; margin-bottom: 1rem; }
.emergency .num { font-family: var(--display); font-weight: 600; font-size: 1.8rem; color: #fff; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.featured-post { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); border: 1.5px solid var(--line); margin-bottom: 3rem; }
.featured-post .fp-media { position: relative; overflow: hidden; min-height: 340px; background: linear-gradient(160deg, var(--teal-200, var(--teal-300)), var(--coral-300)); }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-body { padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.featured-post .fp-body .pill { align-self: flex-start; background: var(--coral-500); color: #fff; font-family: var(--rounded); font-weight: 700; font-size: 0.72rem; padding: 0.3rem 0.9rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.featured-post .fp-body h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 0.8rem; }
.featured-post .fp-body p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.featured-post .fp-meta { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.4rem; font-size: 0.88rem; color: var(--muted); }

.newsletter { background: linear-gradient(160deg, var(--teal-800), var(--teal-900)); border-radius: var(--r-xl); padding: clamp(2.2rem, 4vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(255,126,95,0.25), transparent 70%); top: -100px; left: -60px; }
.newsletter .wrap-in { position: relative; max-width: 560px; margin-inline: auto; }
.newsletter h2 { color: #fff; margin-bottom: 0.7rem; }
.newsletter p { color: var(--teal-300); margin-bottom: 1.6rem; }
.newsletter form { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
.newsletter input { flex: 1; min-width: 240px; padding: 0.9rem 1.2rem; border-radius: 100px; border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: #fff; font-family: var(--body); font-size: 1rem; }
.newsletter input::placeholder { color: var(--teal-300); }
.newsletter input:focus { outline: none; border-color: var(--coral-300); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }

@keyframes pop { 0% { transform: scale(0.92); } 60% { transform: scale(1.04); } 100% { transform: scale(1); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero-badge { animation: floaty 5s ease-in-out infinite; }
.hero-float { animation: floaty 5s ease-in-out 0.8s infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .svc-grid, .price-grid, .plans-grid, .quotes-grid, .journal-grid, .team-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0.3rem;
    position: absolute; top: calc(100% + 0.6rem); left: 1.3rem; right: 1.3rem;
    background: var(--white); padding: 1rem; border-radius: var(--r);
    box-shadow: var(--shadow); border: 1.5px solid var(--line);
  }
  .nav.open .nav-links a { padding: 0.85rem 1rem; }
  .hero-grid, .split, .split.flip .split-media, .contact-grid, .split-head, .featured-post { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .hero-media { margin-top: 1rem; }
  .split-head { gap: 1rem; }
  .hero-badge, .hero-float { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .svc-grid, .price-grid, .plans-grid, .quotes-grid, .journal-grid, .team-grid, .steps-grid, .stats-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-frame { aspect-ratio: 4/3.2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

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