/* =====================================================================
   A Doggie Do — Redesign Mockup Stylesheet
   Direction: "warm editorial restraint" — cream canvas, slate ink,
   sage grounding, coral CTAs, rainbow watercolor paw as the ONE accent.
   Kept identity (Poppins headings + watercolor paw), refreshed system.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Nunito+Sans:opsz,wght@6..12,400;6..12,600;6..12,700;6..12,800&display=swap');

:root {
  /* palette derived from the live site, deepened for contrast/trust */
  --ink:        #283230;
  --slate:      #3F4A49;
  --slate-2:    #5b6664;
  --sage:       #5E7670;
  --sage-deep:  #45574F;
  --sage-soft:  #DCE6E1;
  --sage-tint:  #EDF2EE;
  --coral:      #E5897F;
  --coral-deep: #D26F63;
  --coral-soft: #F7DAD3;
  --cream:      #FBF6EE;
  --cream-2:    #F4ECE0;
  --card:       #FFFFFF;
  --line:       #E7DFD2;
  --gold:       #E8B04B;

  --shadow-sm: 0 2px 8px rgba(40,50,48,.06);
  --shadow-md: 0 14px 34px -16px rgba(40,50,48,.28);
  --shadow-lg: 0 30px 70px -28px rgba(40,50,48,.40);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 44px;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
p  { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sage);
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 2px; }
.lead { font-size: 1.18rem; color: var(--slate-2); max-width: 52ch; }
section { position: relative; }

/* ---------- buttons ---------- */
.btn {
  --pad: .95rem 1.6rem;
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: var(--pad); border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px -10px rgba(210,111,99,.8); }
.btn-primary:hover { background: var(--coral-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--sage-soft); }
.btn-ghost:hover { border-color: var(--sage); background: var(--sage-tint); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-sage { background: var(--sage-deep); color: #fff; }
.btn-sage:hover { background: var(--sage); }
.btn-sm { font-size: .9rem; padding: .6rem 1.05rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,238,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 78px; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--ink); }
.brand img { width: 46px; height: 46px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--slate); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--coral); transition: width .22s ease; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: .98rem; display: inline-flex; align-items: center; gap: .4rem; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; }

/* ---------- hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin: 1.1rem 0 1.2rem; }
.hero h1 .swash { color: var(--coral); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.7rem 0 1.4rem; }
.hero-rating { display: flex; align-items: center; gap: .7rem; font-weight: 700; color: var(--slate); font-size: .96rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }

.hero-media { position: relative; }
.hero-photo { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; position: relative; z-index: 2; }
.hero-blob { position: absolute; inset: -8% -10% auto auto; width: 75%; aspect-ratio: 1; background: var(--sage-soft); border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%; z-index: 1; }
.hero-blob.coral { background: var(--coral-soft); inset: auto auto -8% -12%; width: 55%; }
.float-badge {
  position: absolute; z-index: 3; background: #fff; border-radius: 18px; padding: .8rem 1.05rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem; font-family: var(--font-display);
}
.float-badge .big { font-size: 1.35rem; font-weight: 800; color: var(--ink); line-height: 1; }
.float-badge .lbl { font-size: .72rem; color: var(--slate-2); font-weight: 600; }
.float-badge.tl { top: 8%; left: -6%; }
.float-badge.br { bottom: 7%; right: -5%; }
.badge-paw { width: 38px; height: 38px; border-radius: 50%; }

/* organic divider */
.wave-divide { display: block; width: 100%; height: 90px; }

/* ---------- trust strip ---------- */
.trust { background: var(--sage-deep); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 2.4rem 0; text-align: center; }
.trust .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; line-height: 1; }
.trust .cap { font-size: .82rem; letter-spacing: .04em; color: var(--sage-soft); margin-top: .4rem; text-transform: uppercase; font-weight: 600; }
.trust .divider-dot { width: 1px; background: rgba(255,255,255,.18); }

/* ---------- generic section header ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head { max-width: 56ch; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: .8rem 0 .8rem; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-soft); }
.svc-card .ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--sage-tint); color: var(--sage-deep); margin-bottom: 1.1rem; }
.svc-card:nth-child(2n) .ico { background: var(--coral-soft); color: var(--coral-deep); }
.svc-card .ico svg { width: 30px; height: 30px; }
.svc-card h3 { margin-bottom: .45rem; }
.svc-card p { font-size: .96rem; color: var(--slate-2); margin-bottom: 1rem; }
.svc-card .more { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--coral-deep); display: inline-flex; gap: .35rem; align-items: center; }
.svc-card .more svg { width: 16px; transition: transform .2s; }
.svc-card:hover .more svg { transform: translateX(4px); }
.svc-card.featured { grid-column: span 1; background: linear-gradient(160deg, var(--sage-deep), var(--sage)); color: #fff; border: 0; }
.svc-card.featured h3, .svc-card.featured p { color: #fff; }
.svc-card.featured .ico { background: rgba(255,255,255,.16); color: #fff; }
.svc-card.featured .more { color: #fff; }

/* ---------- locations ---------- */
.loc-section { background: var(--cream-2); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.loc-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; }
.loc-map { height: 170px; background: var(--sage-soft); position: relative; display: grid; place-items: center; color: var(--sage-deep); font-family: var(--font-display); font-weight: 700; }
.loc-map::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 40%, rgba(255,255,255,.5), transparent 40%), repeating-linear-gradient(0deg, rgba(69,87,79,.06) 0 1px, transparent 1px 28px), repeating-linear-gradient(90deg, rgba(69,87,79,.06) 0 1px, transparent 1px 28px); }
.loc-body { padding: 1.6rem 1.7rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.loc-body h3 { font-size: 1.5rem; margin-bottom: .2rem; }
.loc-tag { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-deep); }
.loc-rows { margin: 1rem 0 1.3rem; display: grid; gap: .6rem; }
.loc-row { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; color: var(--slate-2); }
.loc-row svg { width: 18px; height: 18px; color: var(--sage); flex: none; margin-top: 3px; }
.loc-row b { color: var(--ink); font-weight: 700; }
.loc-actions { margin-top: auto; display: flex; gap: .7rem; flex-wrap: wrap; }
.note-flag { font-size: .78rem; color: var(--coral-deep); background: var(--coral-soft); padding: .15rem .5rem; border-radius: 6px; font-weight: 700; }

/* ---------- reviews ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.rev-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.7rem; box-shadow: var(--shadow-sm); }
.rev-card .stars { font-size: 1.1rem; }
.rev-card blockquote { margin: .8rem 0 1.2rem; font-size: 1.02rem; color: var(--slate); }
.rev-who { display: flex; align-items: center; gap: .7rem; }
.rev-who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.rev-who b { font-family: var(--font-display); color: var(--ink); }
.rev-who span { font-size: .82rem; color: var(--slate-2); }

/* ---------- community band ---------- */
.community { background: linear-gradient(150deg, var(--coral) 0%, var(--coral-deep) 100%); color: #fff; border-radius: var(--r-lg); padding: clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; }
.community h2 { color: #fff; }
.community p { color: rgba(255,255,255,.92); }
.community .badge-row { display: flex; gap: 1.5rem; margin-top: 1.4rem; }
.community .badge-row .num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; }
.community .badge-row .cap { font-size: .8rem; opacity: .9; }

/* ---------- about teaser ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-photos img { border-radius: var(--r-md); box-shadow: var(--shadow-md); aspect-ratio: 3/4; object-fit: cover; }
.about-photos img:first-child { margin-top: 2rem; }
.timeline { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .9rem; }
.timeline li { display: flex; gap: .9rem; align-items: baseline; }
.timeline .yr { font-family: var(--font-display); font-weight: 800; color: var(--coral-deep); font-size: 1.05rem; min-width: 52px; }

/* ---------- final CTA ---------- */
.cta-band { text-align: center; background: var(--sage-deep); color: #fff; border-radius: var(--r-lg); padding: clamp(2.6rem,5vw,4rem); }
.cta-band h2 { color: #fff; margin-bottom: .8rem; }
.cta-band p { color: var(--sage-soft); max-width: 46ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #cfd6d3; padding: 3.5rem 0 1.8rem; margin-top: 4rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.foot-grid h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.foot-grid a { display: block; padding: .25rem 0; color: #b9c2bf; }
.foot-grid a:hover { color: #fff; }
.foot-brand img { width: 54px; border-radius: 50%; margin-bottom: .8rem; }
.foot-brand p { font-size: .92rem; color: #9aa5a1; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #8b9591; }
.foot-bottom a { color: #b9c2bf; }

/* ---------- inner page bits (location/service templates) ---------- */
.page-hero { padding: clamp(2.5rem,5vw,4rem) 0; }
.crumbs { font-size: .85rem; color: var(--slate-2); margin-bottom: .8rem; }
.crumbs a { color: var(--sage-deep); font-weight: 700; }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .4rem .95rem; font-size: .85rem; font-weight: 700; font-family: var(--font-display); color: var(--slate); display: inline-flex; gap: .4rem; align-items: center; }
.pill svg { width: 15px; color: var(--sage); }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { text-align: left; padding: 1rem 1.3rem; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--sage-tint); font-family: var(--font-display); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--sage-deep); }
.price-table td:last-child { font-family: var(--font-display); font-weight: 800; color: var(--coral-deep); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }
.sticky-book { position: sticky; top: 96px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.6rem; box-shadow: var(--shadow-md); }
.sticky-book h3 { margin-bottom: .4rem; }
.two-col { display: grid; grid-template-columns: 1.6fr .8fr; gap: 2.2rem; align-items: start; }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.gallery img { border-radius: var(--r-md); aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow-sm); }
.policy-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.policy-list li { display: flex; gap: .7rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: .9rem 1.1rem; }
.policy-list svg { width: 18px; color: var(--sage); flex: none; margin-top: 3px; }

/* annotation flags so reviewers see what's placeholder */
.mock-note { background: #FFF7E6; border: 1px dashed var(--gold); color: #8a6512; font-size: .82rem; padding: .5rem .8rem; border-radius: 8px; font-weight: 700; display: inline-flex; gap: .4rem; align-items: center; margin: 0 0 1rem; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .about-grid, .community, .two-col { grid-template-columns: 1fr; }
  .svc-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .sticky-book { position: static; }
}
@media (max-width: 720px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: block; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .svc-grid, .rev-grid, .loc-grid, .gallery { grid-template-columns: 1fr; }
  .about-photos img:first-child { margin-top: 0; }
  .float-badge.tl { left: -2%; } .float-badge.br { right: -2%; }
  .foot-grid { grid-template-columns: 1fr; }
}
