/* Julie's Dog Grooming — variant C (skill-c-conversion v1.0)
   One job: get the visitor to call (323) 258-5548.
   ACTION GREEN #157A3F appears ONLY on call buttons/bar. Nowhere else. */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #FAF7F2;
  --bg-alt: #F2ECE2;
  --ink: #26221E;
  --muted: #6B6259;
  --card: #FFFFFF;
  --line: #E7DFD4;
  --action: #157A3F;       /* call buttons ONLY */
  --action-hover: #0F6432; /* call buttons ONLY */
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 720px; }

h1, h2, h3 { line-height: 1.15; overflow-wrap: break-word; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.1rem); margin-bottom: 14px; }
h3 { font-size: 1.15rem; margin-bottom: 6px; }

a { color: inherit; }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }

/* ---------- The action ---------- */

.btn-call {
  display: inline-block;
  background: var(--action);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 16px 28px;
  border-radius: 10px;
  min-height: 44px;
  transition: background-color 150ms ease;
}
.btn-call:hover { background: var(--action-hover); }
.btn-call-big { font-size: 1.35rem; padding: 19px 34px; }

.cta-block { margin: 22px 0 0; }

.quiet-link { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
/* Enlarge inline-link hit area to ~44px without shifting layout */
p .quiet-link, address .quiet-link { padding: 10px 2px; margin: -10px -2px; }

/* ---------- Top bar ---------- */

.topbar { border-bottom: 1px solid var(--line); background: var(--bg); }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand { font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.brand-loc { color: var(--muted); font-weight: 600; }
.toplink {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 6px;         /* 44px target */
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Hero ---------- */

.hero { padding: 44px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
h1 { font-size: clamp(1.85rem, 1.3rem + 2.8vw, 3rem); font-weight: 800; letter-spacing: -0.01em; }
.hero-sub { font-size: 1.15rem; color: var(--muted); margin-top: 14px; max-width: 34em; }
.hero-hours { margin-top: 14px; color: var(--muted); }

.hero-photo img { border-radius: 14px; width: 100%; max-height: 540px; object-fit: cover; }
figcaption { font-size: 0.9rem; color: var(--muted); margin-top: 8px; }

/* ---------- Numbers strip ---------- */

.numbers { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.numbers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 26px;
  text-align: center;
}
.num-big { display: block; font-size: 1.9rem; font-weight: 800; }
.num-label { display: block; color: var(--muted); font-size: 0.95rem; margin-top: 2px; }

/* ---------- Sections ---------- */

.section { padding: 52px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Photos as proof */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}
.photo-row > * { min-width: 0; }
.proof-photo img { border-radius: 10px; aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }

/* Quotes */
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 22px;
}
.quote p { font-size: 1.08rem; }
.quote cite { display: block; font-style: normal; color: var(--muted); font-size: 0.92rem; margin-top: 8px; }
.quote-tight { margin-top: 14px; }
.quote-tight p { font-size: 1rem; }

/* Price fact cards */
.fact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}
.fact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}
.fact-big { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.fact-src { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }

/* Pet cards */
.pet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}
.pet-grid > * { min-width: 0; }
.pet-card img { border-radius: 10px; aspect-ratio: 4 / 3.6; object-fit: cover; width: 100%; margin-bottom: 14px; }
.handling { margin-top: 30px; }
.handling ul { margin: 8px 0 0 22px; }
.handling li { margin-bottom: 4px; }

/* Loyalty */
.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}
.loyalty-grid > * { min-width: 0; margin-top: 0; }
.loyalty-tag { font-weight: 800; font-size: 1.15rem; margin-bottom: 8px; }
.loyalty p { font-size: 1rem; }
.staff-facts { margin-top: 24px; }
.staff-facts p { margin-bottom: 10px; max-width: 46em; }

/* FAQ */
details {
  border-bottom: 1px solid var(--line);
}
details:first-of-type { border-top: 1px solid var(--line); }
summary {
  cursor: pointer;
  font-weight: 700;
  padding: 15px 4px;      /* comfortably over 44px tall */
  list-style-position: inside;
}
details p { padding: 0 4px 16px; max-width: 42em; }

/* ---------- Final ask ---------- */

.final { padding: 64px 0; text-align: center; }
.final-inner h2 { margin-bottom: 4px; }
.final-sms { margin-top: 16px; color: var(--muted); }
.final-address { font-style: normal; margin-top: 22px; }
.hours { margin: 14px auto 0; border-collapse: collapse; }
.hours th, .hours td { padding: 4px 10px; text-align: left; font-weight: 400; }
.hours th { font-weight: 700; }

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer p { margin-bottom: 6px; }

/* ---------- Sticky mobile call bar ---------- */

.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: transparent;
  z-index: 50;
  transition: transform 200ms ease;
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: var(--action);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(38, 34, 30, 0.25);
}
.callbar a:active { background: var(--action-hover); }
.callbar-hidden { transform: translateY(120%); }

/* ---------- Mobile ---------- */

@media (max-width: 768px) {
  .callbar { display: block; }
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }

  .hero { padding: 30px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }

  .photo-row { grid-template-columns: 1fr 1fr; }
  .proof-photo:last-child { grid-column: 1 / -1; }
  .proof-photo:last-child img { aspect-ratio: 16 / 10; }

  .fact-cards, .pet-grid, .loyalty-grid { grid-template-columns: 1fr; }
  .numbers-row { grid-template-columns: 1fr; gap: 14px; padding-top: 20px; padding-bottom: 20px; text-align: left; }
  .num { display: flex; align-items: baseline; gap: 10px; }
  .num-big { font-size: 1.4rem; white-space: nowrap; }
}

@media (max-width: 600px) {
  .topbar-inner { gap: 8px; }
  .brand { font-size: 0.95rem; }
  .brand-loc { display: none; }
  .btn-call { display: block; text-align: center; }
}

/* ---------- Motion off (there is almost none to begin with) ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
html.noanim *, html.noanim *::before, html.noanim *::after {
  transition: none !important;
  animation: none !important;
}
