/* Bark & Stroll satellite page styles
   Shared by city service-area pages and service pages.
   Visual identity matches the homepage palette (forest, gold, cream)
   but the layout is leaner and content-focused. */

*{box-sizing:border-box;margin:0;padding:0}
:root{
  --forest:#14613a;
  --forest-deep:#0d4428;
  --forest-ink:#082b18;
  --moss:#2a8458;
  --sage:#e8f0e6;
  --cream:#faf8f4;
  --cream-warm:#f5f1e8;
  --gold:#c4a44e;
  --gold-soft:#d4ba70;
  --white:#ffffff;
  --text:#2a2a28;
  --text-soft:#5a5a56;
  --rule:rgba(13,68,40,.10);
  --rule-soft:rgba(13,68,40,.06);
  --radius:18px;
  --radius-sm:12px;
  --radius-lg:24px;
}

html{scroll-behavior:smooth}
body{
  font-family:'Inter','Helvetica Neue',system-ui,sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:var(--forest);text-decoration:none;border-bottom:1px solid transparent;transition:border-color .2s}
a:hover{border-bottom-color:var(--forest)}

/* ===== TOPBAR ===== */
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(250,248,244,.94);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--rule);
}
.topbar-inner{
  max-width:1100px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:.85rem 1.25rem;
}
.topbar-brand{
  display:flex;align-items:center;gap:.65rem;
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.15rem;color:var(--forest-deep);
  border-bottom:none;
}
.topbar-brand img{width:34px;height:34px;border-radius:8px}
.topbar-nav{display:flex;gap:1.4rem;font-size:.92rem;font-weight:500}
.topbar-nav a{color:var(--text-soft);border-bottom:none}
.topbar-nav a:hover{color:var(--forest-deep)}
@media (max-width:640px){
  .topbar-nav{display:none}
}

/* ===== HERO ===== */
.page-hero{
  background:
    radial-gradient(900px 360px at 20% 0%, rgba(212,186,112,.18), transparent 60%),
    linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 70%);
  color:var(--cream);
  padding:5rem 1.25rem 3.5rem;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background:url('/img/hero-bg.webp?v=2') center/cover no-repeat;
  opacity:.10;mix-blend-mode:luminosity;pointer-events:none;
}
.page-hero-inner{position:relative;max-width:820px;margin:0 auto;text-align:center}
.eyebrow{
  display:inline-flex;align-items:center;gap:.45rem;
  font-size:.78rem;text-transform:uppercase;letter-spacing:.15em;
  color:var(--gold-soft);font-weight:600;margin-bottom:1rem;
}
.eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--gold-soft);box-shadow:0 0 8px var(--gold-soft)}
.page-hero h1{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(2.2rem,5.5vw,3.6rem);
  line-height:1.06;letter-spacing:-.02em;
  margin-bottom:.7rem;text-shadow:0 4px 24px rgba(0,0,0,.32);
}
.page-hero .lede{
  font-size:clamp(1.02rem,2vw,1.18rem);
  color:rgba(255,255,255,.88);font-weight:500;
  max-width:600px;margin:0 auto 1.6rem;
}
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--gold);color:var(--forest-ink);
  font-weight:700;font-size:.95rem;
  padding:.85rem 1.55rem;border-radius:999px;
  border:none;cursor:pointer;
  box-shadow:0 8px 24px -10px rgba(0,0,0,.4);
  transition:transform .15s, box-shadow .15s, background .2s;
}
.btn:hover{background:var(--gold-soft);transform:translateY(-1px);border-bottom:none}
.btn-ghost{
  background:transparent;color:var(--cream);
  border:1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

/* ===== BREADCRUMB ===== */
.crumb{
  max-width:1100px;margin:0 auto;
  padding:1rem 1.25rem 0;
  font-size:.82rem;color:var(--text-soft);
}
.crumb a{color:var(--text-soft);border-bottom:none}
.crumb a:hover{color:var(--forest-deep)}
.crumb .sep{margin:0 .35rem;opacity:.5}

/* ===== CONTENT ===== */
.section{
  max-width:820px;margin:0 auto;
  padding:3rem 1.25rem;
}
.section-wide{max-width:1100px}
.section h2{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(1.65rem,3.5vw,2.2rem);
  color:var(--forest-deep);
  margin-bottom:1rem;letter-spacing:-.01em;
}
.section h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.25rem;color:var(--forest-deep);
  margin:1.5rem 0 .6rem;
}
.section p{margin-bottom:1rem;color:var(--text);font-size:1.05rem}
.section p+h2,.section p+h3{margin-top:2rem}
.section ul{margin:.5rem 0 1.2rem 1.5rem}
.section li{margin-bottom:.4rem}

/* ===== CARDS / GRID ===== */
.card-grid{
  display:grid;gap:1rem;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  margin:1.5rem 0;
}
.card{
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--radius);
  padding:1.25rem 1.35rem;
  transition:transform .15s, box-shadow .15s, border-color .2s;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 28px -16px rgba(13,68,40,.22);
  border-color:rgba(196,164,78,.45);
}
.card h3{margin-top:0;font-size:1.1rem}
.card p{font-size:.95rem;color:var(--text-soft);margin-bottom:.6rem}
.card a{font-weight:600;font-size:.92rem}

/* ===== AREA STRIP (city link grid) ===== */
.area-grid{
  display:grid;gap:.55rem;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  margin:1.2rem 0 2rem;
}
.area-grid a{
  display:flex;align-items:center;justify-content:space-between;
  padding:.7rem 1rem;
  background:var(--sage);
  border-radius:var(--radius-sm);
  color:var(--forest-deep);font-weight:600;font-size:.92rem;
  border-bottom:none;
  transition:background .2s, transform .15s;
}
.area-grid a:hover{background:#dde7d9;transform:translateX(2px)}
.area-grid a::after{content:'›';font-size:1.1rem;color:var(--gold)}

/* ===== CTA STRIP ===== */
.cta-strip{
  background:var(--forest-deep);color:var(--cream);
  border-radius:var(--radius-lg);
  padding:2.2rem 1.5rem;text-align:center;
  margin:2.5rem 0;
}
.cta-strip h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.6rem;color:var(--cream);margin-bottom:.5rem;
}
.cta-strip p{color:rgba(255,255,255,.85);margin-bottom:1.2rem;font-size:1rem}

/* ===== FAQ ===== */
.faq-item{
  border-top:1px solid var(--rule);
  padding:1.1rem 0;
}
.faq-item h3{
  font-family:'Inter',sans-serif;
  font-size:1.02rem;font-weight:600;color:var(--forest-deep);
  margin-bottom:.4rem;
}
.faq-item p{font-size:.98rem;color:var(--text-soft);margin:0}

/* ===== FOOTER ===== */
.page-footer{
  background:var(--forest-ink);color:rgba(250,248,244,.78);
  padding:2.5rem 1.25rem 1.5rem;
  border-top:6px solid var(--gold);
}
.page-footer-inner{max-width:1100px;margin:0 auto}
.page-footer a{color:var(--gold-soft);border-bottom:1px dotted rgba(212,186,112,.3)}
.page-footer a:hover{color:var(--gold);border-bottom-color:var(--gold)}
.footer-row{
  display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:space-between;
  margin-bottom:1.5rem;
}
.footer-col{flex:1;min-width:200px}
.footer-col h4{
  font-family:'DM Serif Display',Georgia,serif;
  color:var(--cream);font-size:1.05rem;margin-bottom:.6rem;
}
.footer-col ul{list-style:none;margin:0;padding:0}
.footer-col li{margin-bottom:.35rem;font-size:.92rem}
.page-footer-legal{
  border-top:1px solid rgba(250,248,244,.10);
  padding-top:1rem;font-size:.82rem;text-align:center;color:rgba(250,248,244,.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width:640px){
  .section{padding:2.4rem 1.1rem}
  .page-hero{padding:3.5rem 1rem 2.5rem}
  .crumb{padding:.85rem 1.1rem 0}
}
