/* ============================================================
   Barkbus — Mobile Dog Grooming
   Simple hand-editable stylesheet. No build step, no framework.

   BRAND COLOURS (from the original Wix site):
     cream background   #E9DDCF
     lighter panel      #F3EADE
     warm white         #FFF8EF
     gold / bronze      #785E26   (headings + accents)
     black              #111111   (text, logo)
   FONTS:
     Headings: Helvetica / Arial (like the old site)
     Body:     Baskerville-style italic serif (the "boutique" feel)
   ============================================================ */

:root {
  --cream: #E9DDCF;
  --panel: #F3EADE;
  --warm-white: #FFF8EF;
  --gold: #785E26;
  --ink: #111111;
  --max-width: 960px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  /* Baskerville italic = the signature look of the old site.
     Falls back gracefully on every device. */
  font-family: Baskerville, 'Baskerville Old Face', 'Palatino Linotype', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.65;
}

/* Headings use the upright sans-serif, mostly in brand gold */
h1, h2, h3, h4, nav, .btn, .price-table, .plain {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
}

h2 {
  color: var(--gold);
  font-weight: 400;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.35rem; }

section { padding: 2.5rem 1.25rem; }
.inner { max-width: var(--max-width); margin: 0 auto; }
.center { text-align: center; }

/* ---------- header / nav ---------- */
header {
  background: var(--cream);
  padding: 1rem 1rem 0.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(120, 94, 38, 0.25);
}
header img.logo { width: min(320px, 70vw); height: auto; }
nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.25rem 1.1rem;
  padding: 0.6rem 0 0.4rem;
  font-size: 0.85rem; letter-spacing: 0.06em;
}
nav a { color: var(--ink); text-decoration: none; }
nav a:hover { color: var(--gold); text-decoration: underline; }

/* ---------- hero ---------- */
.hero img.van {
  width: 100%; height: auto; display: block;
  max-height: 70vh; object-fit: cover; /* keeps the van photo from towering on tall screens */
  border-radius: 6px;
}
.hero .specialties {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem 1.5rem;
  margin: 1.2rem 0 0.4rem;
  color: var(--gold);
  font-size: 1.05rem;
}
.tagline { font-size: 1.2rem; margin-top: 0.8rem; }

/* Call-to-action buttons (click-to-call / email) */
.cta-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem; margin: 1.2rem 0 0.3rem;
}
.btn {
  display: inline-block;
  background: var(--gold); color: var(--warm-white);
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem; letter-spacing: 0.03em;
}
.btn.secondary { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn:hover { opacity: 0.85; }
.note { font-size: 0.9rem; opacity: 0.8; }

/* ---------- services / pricing ---------- */
.price-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.price-table th, .price-table td {
  text-align: left; padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(120, 94, 38, 0.3);
}
.price-table th { color: var(--gold); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.price-table td.price { white-space: nowrap; font-weight: 600; }
.service-desc { font-size: 0.92rem; opacity: 0.85; }

/* ---------- alternating panels ---------- */
.panel { background: var(--panel); }
.panel-light { background: var(--warm-white); }

/* ---------- team ---------- */
.team-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 1.5rem;
}
.team-grid figure img {
  width: 100%; aspect-ratio: 8/9; object-fit: cover; border-radius: 6px;
}
.team-grid figcaption { margin-top: 0.5rem; }
.team-grid .role { font-size: 0.85rem; opacity: 0.75; }

/* ---------- gallery ---------- */
.gallery {
  display: grid; gap: 0.6rem;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  margin-top: 1.5rem;
}
.gallery img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 4px; display: block;
}

/* ---------- collapsible extras (no JavaScript needed) ---------- */
details {
  background: var(--warm-white);
  border: 1px solid rgba(120, 94, 38, 0.3);
  border-radius: 6px;
  margin-top: 0.8rem;
  padding: 0.9rem 1.1rem;
}
details summary {
  cursor: pointer;
  color: var(--gold);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal; font-size: 1.05rem; font-weight: 600;
}
details[open] summary { margin-bottom: 0.7rem; }
details ul { padding-left: 1.2rem; margin: 0.4rem 0; }
details img { max-width: 100%; height: auto; border-radius: 4px; margin-top: 0.6rem; }

/* ---------- testimonials ---------- */
blockquote {
  background: var(--warm-white);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}

/* ---------- contact / footer ---------- */
.contact-card { max-width: 560px; margin: 1.2rem auto 0; }
.contact-card a { color: var(--gold); }
.areas {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.4rem 0.9rem; margin-top: 0.8rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal;
  font-size: 0.92rem;
}
footer {
  text-align: center;
  padding: 1.5rem 1rem 2.5rem;
  font-size: 0.85rem; opacity: 0.75;
}

/* ---------- larger screens ---------- */
@media (min-width: 700px) {
  section { padding: 3.5rem 2rem; }
}
