/* SmartGroom — craft + confidence. Earthy warmth, not clinical SaaS blue. */

:root {
  --ink: #2b2118;        /* deep warm brown-black */
  --bark: #4a3728;       /* rich brown */
  --clay: #b5623a;       /* warm terracotta — primary accent */
  --clay-dark: #96492a;
  --moss: #5c6b4f;       /* muted green */
  --cream: #faf6ef;      /* warm off-white background */
  --sand: #f0e8da;       /* section alt background */
  --paper: #ffffff;
  --muted: #7c7060;
  --line: #e5dccb;
  --serif: 'Zilla Slab', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(43, 33, 24, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.narrow-mid { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-bottom: 1rem;
}
.eyebrow.light { color: #e8b89a; }

/* ---------- Animations ---------- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 6px 22px rgba(181, 98, 58, 0.35); }
.btn-primary:hover { background: var(--clay-dark); box-shadow: 0 10px 28px rgba(181, 98, 58, 0.45); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }
.btn-light { background: var(--cream); color: var(--bark); box-shadow: 0 6px 22px rgba(0,0,0,0.25); }
.btn-light:hover { background: #fff; }
.btn-ghost-light { background: transparent; color: var(--cream); border: 2px solid rgba(250,246,239,0.4); }
.btn-ghost-light:hover { border-color: var(--cream); }
.btn-wide { width: 100%; text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(43,33,24,0.06); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.nav-logo span { color: var(--clay); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--clay); }
.nav-cta {
  background: var(--clay);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--clay-dark); }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { padding: 180px 0 100px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.hero-sub { font-size: 1.2rem; color: var(--muted); margin: 1.4rem 0 2rem; max-width: 540px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ctas.center { justify-content: center; }
.hero-note { margin-top: 1.2rem; font-size: 0.92rem; color: var(--muted); font-weight: 500; }

/* Phone mock */
.hero-visual { display: flex; justify-content: center; }
.phone-mock {
  width: 320px;
  background: var(--ink);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow), 0 30px 80px rgba(43,33,24,0.2);
  transform: rotate(2deg);
}
.phone-top { display: flex; justify-content: center; padding: 6px 0 10px; }
.phone-dot { width: 60px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.2); }
.phone-screen { background: var(--paper); border-radius: 26px; padding: 20px; }
.mock-header { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.mock-load { margin-bottom: 14px; }
.mock-load span {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: #eaf0e4; color: var(--moss); padding: 4px 10px; border-radius: 999px;
}
.mock-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.85rem; }
.mock-label { color: var(--muted); }
.mock-val { font-weight: 600; }
.mock-confirm {
  margin: 14px 0; padding: 11px; text-align: center;
  background: var(--moss); color: #fff; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
}
.mock-charge { border: 1.5px dashed var(--line); border-radius: 12px; padding: 14px; }
.mock-charge-title { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.mock-charge-btn {
  width: 100%; padding: 10px; border: none; border-radius: 8px;
  background: var(--clay); color: #fff; font-weight: 600; font-size: 0.85rem;
  font-family: var(--sans); cursor: pointer;
}

/* ---------- Proof bar ---------- */
.proof-bar { padding: 48px 0; background: var(--sand); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.proof-item { display: flex; flex-direction: column; gap: 4px; }
.proof-item strong { font-family: var(--serif); font-size: 1.9rem; color: var(--clay); line-height: 1; }
.proof-item span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Villain ---------- */
.villain { background: var(--ink); color: var(--cream); }
.villain h2 { color: var(--cream); }
.villain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.villain-card {
  background: rgba(250,246,239,0.06);
  border: 1px solid rgba(250,246,239,0.12);
  border-radius: var(--radius);
  padding: 30px;
}
.villain-card h3 { color: var(--cream); font-size: 1.15rem; }
.villain-card p { color: rgba(250,246,239,0.68); font-size: 0.98rem; }
.villain-close {
  margin-top: 48px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #e8b89a;
}

/* ---------- Pillars ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-num { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--clay); margin-bottom: 14px; }
.pillar h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.pillar p { color: var(--muted); font-size: 0.98rem; }
.pillar-proof {
  margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: 0.88rem !important; font-weight: 600; color: var(--moss) !important;
}

/* ---------- Autopilot ---------- */
.autopilot { background: var(--sand); }
.auto-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.auto-copy p { color: var(--muted); margin-bottom: 1rem; }
.auto-copy .btn { margin-top: 0.6rem; }
.auto-timeline { background: var(--paper); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.tl-item { display: flex; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.tl-item:last-child { border-bottom: none; }
.tl-time { font-size: 0.75rem; font-weight: 700; color: var(--clay); min-width: 68px; letter-spacing: 0.03em; }
.tl-event { font-size: 0.9rem; }
.tl-you { background: #eaf0e4; margin: 8px -12px -12px; padding: 13px 12px; border-radius: 10px; }
.tl-you .tl-time { color: var(--moss); }
.tl-you .tl-event { font-weight: 600; color: var(--moss); }

/* ---------- Demo ---------- */
.demo { background: var(--bark); color: var(--cream); text-align: center; }
.demo h2 { color: var(--cream); }
.demo-sub { color: rgba(250,246,239,0.72); max-width: 640px; margin: 0 auto 2rem; font-size: 1.1rem; }
.demo-note { margin-top: 1.4rem; font-size: 0.9rem; color: rgba(250,246,239,0.55); }

/* ---------- Calculator ---------- */
.calc-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  background: var(--paper); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); margin-top: 40px;
  border: 1px solid var(--line);
}
.calc-inputs { padding: 40px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 22px; }
.calc-inputs label { font-weight: 600; font-size: 0.92rem; display: flex; flex-direction: column; gap: 8px; }
.calc-inputs input {
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 1.05rem; font-family: var(--sans); font-weight: 600; color: var(--ink);
  background: var(--cream);
}
.calc-inputs input:focus { outline: none; border-color: var(--clay); }
.calc-results { padding: 40px; background: var(--sand); }
.calc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); }
.calc-row span { font-size: 0.92rem; color: var(--muted); }
.calc-row strong { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.calc-total strong { color: var(--clay); font-size: 2rem; }
.calc-note { font-size: 0.9rem; color: var(--muted); margin: 18px 0 20px; }

/* ---------- Ownership ---------- */
.own-lead { font-size: 1.15rem; color: var(--muted); max-width: 760px; margin-bottom: 3rem; }
.own-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.own-col { border-radius: var(--radius); padding: 36px; }
.own-them { background: var(--sand); border: 1px solid var(--line); }
.own-us { background: var(--ink); color: var(--cream); }
.own-us h3 { color: #e8b89a; }
.own-col h3 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.own-col ul { list-style: none; }
.own-col li { padding: 9px 0 9px 28px; position: relative; font-size: 0.97rem; }
.own-them li { color: var(--muted); }
.own-them li::before { content: "✕"; position: absolute; left: 0; color: #c0846a; font-weight: 700; }
.own-us li { color: rgba(250,246,239,0.85); }
.own-us li::before { content: "✓"; position: absolute; left: 0; color: #9fb489; font-weight: 700; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--sand); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.testi {
  background: var(--paper); border-radius: var(--radius); padding: 34px;
  border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between;
}
.testi p { font-family: var(--serif); font-size: 1.12rem; line-height: 1.55; margin-bottom: 1.6rem; }
.testi footer { display: flex; flex-direction: column; }
.testi footer strong { font-size: 0.95rem; }
.testi footer span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Pricing ---------- */
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 48px; margin-top: 40px; box-shadow: var(--shadow);
}
.price-head { text-align: center; margin-bottom: 2rem; }
.price-label { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
.price-amount { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--clay); }
.price-note { display: block; font-size: 0.9rem; color: var(--muted); margin-top: 8px; }
.price-list { list-style: none; max-width: 560px; margin: 0 auto 2rem; }
.price-list li { padding: 11px 0 11px 32px; position: relative; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.price-list li::before { content: "✓"; position: absolute; left: 4px; color: var(--moss); font-weight: 700; }
.price-guarantee { margin-top: 1.4rem; text-align: center; font-size: 0.92rem; color: var(--moss); font-weight: 600; }
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.fit-col h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.fit-col ul { list-style: none; }
.fit-col li { padding: 7px 0 7px 26px; position: relative; font-size: 0.95rem; color: var(--muted); }
.fit-col:first-child li::before { content: "✓"; position: absolute; left: 0; color: var(--moss); font-weight: 700; }
.fit-col:last-child li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 0 26px; overflow: hidden;
}
.faq-item summary {
  padding: 20px 0; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--serif); font-size: 1.5rem; color: var(--clay); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 22px; color: var(--muted); font-size: 0.97rem; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--ink); color: var(--cream); text-align: center; padding: 120px 0; }
.final-cta h2 { color: var(--cream); font-size: clamp(2rem, 4.4vw, 3.2rem); }
.final-cta p { color: rgba(250,246,239,0.7); max-width: 560px; margin: 1.4rem auto 2.4rem; font-size: 1.12rem; }

/* ---------- Footer ---------- */
.footer { background: #1f1812; color: rgba(250,246,239,0.6); padding: 72px 0 0; }
.footer .nav-logo { color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { font-size: 0.92rem; margin-top: 1rem; max-width: 300px; }
.footer-col h4 { color: var(--cream); font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(250,246,239,0.6); text-decoration: none; padding: 5px 0; font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: #e8b89a; }
.footer-promise { font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(250,246,239,0.1); padding: 24px; text-align: center; font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .auto-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 140px 0 72px; }
  .pillar-grid, .testi-grid { grid-template-columns: 1fr; }
  .proof-bar-inner { grid-template-columns: 1fr 1fr; }
  .villain-grid, .own-compare, .fit, .calc-grid { grid-template-columns: 1fr; }
  .calc-inputs { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(43,33,24,0.1);
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 560px) {
  section { padding: 64px 0; }
  .proof-bar-inner, .footer-grid { grid-template-columns: 1fr; }
  .phone-mock { width: 280px; }
  .price-card { padding: 32px 22px; }
  .nav-logo { font-size: 1.25rem; }   /* mobile logo per spec */
}

/* ---------- Definition (SEO/AI) ---------- */
.definition { background: var(--cream); padding: 72px 0; }
.definition h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.definition p { font-size: 1.15rem; color: var(--muted); max-width: 760px; margin-top: 1rem; }

/* ---------- Contact page ---------- */
.contact-hero { padding: 150px 0 96px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.2rem; }
.crumb a { color: var(--clay); text-decoration: none; }
.crumb span { margin: 0 6px; opacity: 0.5; }
.contact-sub { font-size: 1.12rem; color: var(--muted); margin: 1.2rem 0 1.6rem; }
.contact-points { list-style: none; margin-bottom: 1.8rem; }
.contact-points li { padding: 8px 0 8px 28px; position: relative; font-weight: 500; }
.contact-points li::before { content: "✓"; position: absolute; left: 0; color: var(--moss); font-weight: 700; }
.contact-proof { border-left: 3px solid var(--clay); padding: 4px 0 4px 18px; }
.contact-proof p { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.contact-proof strong { color: var(--clay); }

.contact-form-wrap {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-weight: 600; font-size: 0.9rem; display: flex; flex-direction: column; gap: 7px; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: var(--sans); color: var(--ink); background: var(--cream);
  font-weight: 500;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--clay);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; }
.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 4px; }
.form-heading { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.6rem; }
.form-lead { color: var(--muted); margin-bottom: 1.4rem; }
.honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero { padding: 120px 0 64px; }
}

/* ---------- Logo image (uses provided PNG, CSS text as fallback) ---------- */
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo-img { height: 42px; width: auto; display: block; }
.footer .nav-logo-img { height: 48px; }
/* When the PNG is present, hide the text fallback */
.nav-logo:has(img.nav-logo-img) .nav-logo-txt { display: none; }
@media (max-width: 560px) { .nav-logo-img { height: 34px; } }

/* ---------- Media placeholder system ----------
   Warm gradient + label shows until the real file is dropped in.
   The <img> sits above (z-index 2); onerror removes it -> label shows. */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sand) 0%, #e7d6c2 100%);
  min-height: 200px;
}
.media img { display: block; width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.media-label {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 22px; color: var(--muted); font-size: 0.82rem; font-weight: 600; line-height: 1.5;
}
.media-label::before { content: "📷"; position: absolute; top: 18px; left: 0; right: 0; font-size: 1.4rem; opacity: 0.6; }

/* ---------- Hero photo composition ---------- */
.hero-visual { position: relative; }
.hero-photo { width: 100%; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.hero-visual .phone-mock { position: absolute; right: -18px; bottom: -28px; width: 230px; transform: rotate(3deg); z-index: 3; }
@media (max-width: 960px) {
  .hero-visual .phone-mock { position: static; margin: -40px auto 0; transform: rotate(2deg); }
}

/* ---------- Craft band (groomer at work) ---------- */
.craft { background: var(--sand); }
.craft-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.craft-photo { aspect-ratio: 4/3; box-shadow: var(--shadow); }
.craft-copy h2 { margin-bottom: 1rem; }
.craft-copy p { color: var(--muted); margin-bottom: 1rem; }
@media (max-width: 860px) { .craft-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Real product screenshots showcase ---------- */
.showcase { background: var(--cream); }
.shot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.shot { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.shot .media { aspect-ratio: 9/16; margin-bottom: 16px; }
.shot h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.shot p { font-size: 0.92rem; color: var(--muted); }
@media (max-width: 860px) { .shot-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ---------- Pet gallery strip ---------- */
.gallery { background: var(--ink); color: var(--cream); }
.gallery h2 { color: var(--cream); }
.gallery .eyebrow { color: #e8b89a; }
.gallery-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.gallery-strip .media { aspect-ratio: 1; border-radius: 12px; min-height: 0; }
.gallery-strip .media-label { font-size: 0.72rem; padding: 12px; color: var(--bark); }
@media (max-width: 860px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonial avatars ---------- */
.testi footer { flex-direction: row; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 999px; overflow: hidden; flex-shrink: 0; background: var(--sand); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { display: flex; flex-direction: column; }

/* ---------- Brand strip (logo moment) ---------- */
.brand-strip { background: var(--sand); text-align: center; padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-strip img { height: 70px; width: auto; }
.brand-strip .brand-fallback { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--ink); }
.brand-strip .brand-fallback span { color: var(--clay); }
.brand-strip:has(img) .brand-fallback { display: none; }
