/* ═══════════════════════════════════════════════════════════════════
   PAWSAFE — Main Stylesheet
   Design system: Olive green, Fraunces display, DM Sans body
   ═══════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────────────────── */
:root {
  --ol-50:  #F5F7EE;
  --ol-100: #E4EDCA;
  --ol-200: #C9DB97;
  --ol-300: #AABF64;
  --ol-400: #8FA342;
  --ol-500: #6B7C3A;
  --ol-600: #526030;
  --ol-700: #3A4422;
  --ol-800: #252C15;
  --ol-900: #131708;

  --charcoal:  #1A1C15;
  --charcoal2: #23261B;
  --amber:     #D4A843;
  --cream:     #FAFAF3;
  --white:     #ffffff;
  --muted:     #6B6E5C;
  --border:    #E2E5D4;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;

  --shadow-card:  0 2px 12px rgba(26,28,21,0.07);
  --shadow-hover: 0 10px 36px rgba(107,124,58,0.18);
  --shadow-nav:   0 2px 16px rgba(0,0,0,0.2);

  --transition: 0.2s ease;

  /* Container */
  --container-max: 1200px;
  --container-pad: 48px;
}

@media (max-width: 768px) {
  :root { --container-pad: 20px; }
}


/* ── Reset & Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ol-600); transition: color var(--transition); }
a:hover { color: var(--ol-400); }

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

/* ── GeneratePress overrides ─────────────────────────────────────── */
.site-header        { display: none; }   /* We use our own nav */
.generate-columns-container { max-width: none !important; padding: 0 !important; }
.page-hero          { display: none; }
.entry-content      { max-width: none; }
.ps-full-width      { padding: 0 !important; }
#generate-sidebar   { display: none; }
.site-content       { padding: 0; }
.inside-article     { padding: 0; }
.entry-header       { display: none; }


/* ══════════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════════ */
.ps-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(107,124,58,0.2);
  box-shadow: var(--shadow-nav);
}
.ps-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--container-pad); height: 68px;
}
.ps-nav__logo {
  font-family: var(--ff-display);
  font-size: 24px; font-weight: 700;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 9px; letter-spacing: -0.3px;
}
.ps-nav__logo em { color: var(--ol-300); font-style: normal; }
.ps-nav__logo:hover { color: var(--white); }
.ps-nav__links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.ps-nav__links a {
  display: block; padding: 7px 13px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: all var(--transition);
}
.ps-nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.ps-nav__actions { display: flex; align-items: center; gap: 8px; }
.ps-btn-ghost {
  padding: 8px 17px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.7); background: transparent;
  text-decoration: none; transition: all var(--transition);
}
.ps-btn-ghost:hover { border-color: var(--ol-400); color: var(--ol-300); }
.ps-btn-primary {
  padding: 9px 20px; background: var(--ol-500);
  border: none; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 700; color: var(--white);
  text-decoration: none; transition: all var(--transition); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.ps-btn-primary:hover { background: var(--ol-400); color: var(--white); transform: translateY(-1px); }
.ps-nav__hamburger { display: none; }

@media (max-width: 768px) {
  .ps-nav__links { display: none; }
  .ps-nav__hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .ps-nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
}


/* ══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
══════════════════════════════════════════════════════════════════ */
.ps-container {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--container-pad);
}
.ps-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ol-400);
  margin-bottom: 10px; display: block;
}
.ps-section-title {
  font-family: var(--ff-display);
  font-size: 36px; font-weight: 700; line-height: 1.12;
  color: var(--charcoal); margin-bottom: 12px;
}
.ps-section-sub {
  font-size: 15px; color: var(--muted); max-width: 480px; line-height: 1.7;
}
.ps-section { padding: 72px 0; }
.ps-section--alt { background: var(--white); }
.ps-section--dark { background: var(--charcoal); }
.ps-section--olive { background: var(--ol-600); }

.ps-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: rgba(255,255,255,0.4);
  margin-bottom: 18px; flex-wrap: wrap;
}
.ps-breadcrumb a { color: var(--ol-300); text-decoration: none; }
.ps-breadcrumb a:hover { color: var(--ol-200); }
.ps-breadcrumb__sep { color: rgba(255,255,255,0.2); }

/* Buttons */
.ps-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 700; text-decoration: none;
  transition: all var(--transition); cursor: pointer; border: none;
  font-family: var(--ff-body);
}
.ps-btn--green { background: var(--ol-500); color: var(--white); }
.ps-btn--green:hover { background: var(--ol-400); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,124,58,0.3); }
.ps-btn--outline { background: transparent; color: var(--ol-600); border: 2px solid var(--ol-200); }
.ps-btn--outline:hover { border-color: var(--ol-400); background: var(--ol-50); color: var(--ol-700); }
.ps-btn--white { background: var(--white); color: var(--ol-700); }
.ps-btn--white:hover { background: var(--ol-50); transform: translateY(-2px); }
.ps-btn--dark { background: var(--charcoal); color: var(--white); }
.ps-btn--full { width: 100%; justify-content: center; }

/* Badges */
.ps-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; letter-spacing: 0.3px;
}
.ps-badge--gold     { background: rgba(212,168,67,0.15); color: var(--amber); border: 1px solid rgba(212,168,67,0.3); }
.ps-badge--verified { background: var(--ol-600); color: var(--white); }
.ps-badge--pro      { background: var(--ol-100); color: var(--ol-700); }
.ps-badge--bg       { background: rgba(255,255,255,0.08); color: #aaa; border: 1px solid rgba(255,255,255,0.1); }
.ps-badge--avail    { background: rgba(76,175,80,0.15); color: #6EC670; border: 1px solid rgba(76,175,80,0.25); }
.ps-badge--new      { background: var(--charcoal); color: var(--white); }


/* ══════════════════════════════════════════════════════════════════
   PROVIDER CARD
══════════════════════════════════════════════════════════════════ */
.ps-card {
  display: block; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.ps-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); color: inherit; }
.ps-card--featured { border-color: rgba(212,168,67,0.4); box-shadow: 0 0 0 1px rgba(212,168,67,0.2); }

.ps-card__thumb {
  height: 185px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ol-100), var(--ol-200));
  font-size: 64px;
}
.ps-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ps-card__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,28,21,0.1));
  pointer-events: none;
}
.ps-card__thumb-placeholder { font-size: 64px; }
.ps-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--charcoal); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 11px; border-radius: 20px;
}
.ps-card__badge--gold { background: var(--amber); color: var(--charcoal); }
.ps-card__verified {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  width: 28px; height: 28px; background: var(--ol-500);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--white); font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.ps-card__body { padding: 18px 20px 20px; }
.ps-card__name {
  font-family: var(--ff-display); font-size: 18px; font-weight: 600;
  margin-bottom: 3px; color: var(--charcoal);
}
.ps-card__location {
  font-size: 12px; color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 4px;
}
.ps-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.ps-card__tag {
  background: var(--ol-50); color: var(--ol-600);
  border: 1px solid var(--ol-100); font-size: 11px; font-weight: 600;
  padding: 3px 11px; border-radius: 20px;
}
.ps-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 13px; border-top: 1px solid var(--ol-50);
}
.ps-card__rating {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600;
}
.ps-stars { color: var(--amber); }
.ps-score { color: var(--charcoal); }
.rating-count { color: var(--muted); font-weight: 400; }
.ps-card__price {
  font-family: var(--ff-display); font-size: 19px;
  font-weight: 700; color: var(--ol-600);
}
.ps-card__price small {
  font-family: var(--ff-body); font-size: 11px;
  font-weight: 400; color: var(--muted);
}
.ps-no-results {
  text-align: center; padding: 40px 20px; color: var(--muted);
  grid-column: 1/-1;
}
.ps-no-results a { color: var(--ol-500); font-weight: 600; }

/* Provider grids */
.ps-provider-grid {
  display: grid; gap: 24px;
}
.ps-provider-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.ps-provider-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.ps-provider-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .ps-provider-grid--cols-3,
  .ps-provider-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ps-provider-grid--cols-2,
  .ps-provider-grid--cols-3,
  .ps-provider-grid--cols-4 { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════════════
   HOMEPAGE
══════════════════════════════════════════════════════════════════ */

/* Hero */
.ps-hero {
  background: var(--charcoal); position: relative; overflow: hidden;
  padding: 90px 0 80px;
}
.ps-hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.ps-hero__orb--1 {
  width: 520px; height: 520px; top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(107,124,58,0.35), transparent 70%);
}
.ps-hero__orb--2 {
  width: 300px; height: 300px; bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(107,124,58,0.18), transparent 70%);
}
.ps-hero__inner { position: relative; z-index: 1; }
.ps-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,124,58,0.2); border: 1px solid rgba(176,196,109,0.25);
  color: var(--ol-300); font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 22px;
}
.ps-hero__h1 {
  font-family: var(--ff-display);
  font-size: 60px; font-weight: 700; line-height: 1.07;
  color: var(--white); max-width: 640px; margin-bottom: 20px;
}
.ps-hero__h1 em { font-style: italic; color: var(--ol-300); }
.ps-hero__sub {
  font-size: 16.5px; color: rgba(255,255,255,0.55);
  max-width: 500px; line-height: 1.7; margin-bottom: 44px;
}

/* Search bar */
.ps-search {
  display: flex; max-width: 620px;
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.ps-search__seg {
  flex: 1; padding: 14px 20px;
  border-right: 1px solid #ebebeb;
}
.ps-search__seg:last-of-type { border-right: none; }
.ps-search__seg label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.ps-search__seg input,
.ps-search__seg select {
  border: none; outline: none; font-size: 14px; font-weight: 500;
  color: var(--charcoal); width: 100%; background: transparent;
  font-family: var(--ff-body);
}
.ps-search__btn {
  background: var(--ol-500); color: var(--white);
  border: none; padding: 0 28px; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  transition: background var(--transition); min-height: 60px;
  font-family: var(--ff-body);
}
.ps-search__btn:hover { background: var(--ol-400); }

/* Hero stats */
.ps-hero__stats { display: flex; gap: 0; margin-top: 44px; }
.ps-hero__stat { padding-right: 40px; }
.ps-hero__stat + .ps-hero__stat {
  padding-left: 40px; padding-right: 40px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.ps-hero__stat-val {
  font-family: var(--ff-display); font-size: 30px;
  font-weight: 700; color: var(--white); line-height: 1;
}
.ps-hero__stat-label { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }

/* Services strip */
.ps-services-strip { background: var(--ol-600); }
.ps-services-strip__inner {
  display: flex; max-width: var(--container-max);
  margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.06);
}
.ps-service-pill {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 9px; padding: 18px 12px; font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.65); background: none; border: none;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition); cursor: pointer;
  font-family: var(--ff-body); text-decoration: none;
}
.ps-service-pill:last-child { border-right: none; }
.ps-service-pill:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.ps-service-pill.active,
.ps-service-pill--active { background: var(--ol-700); color: var(--white); font-weight: 600; }
.ps-service-pill__icon { font-size: 20px; }

/* Trust strip */
.ps-trust-strip {
  background: var(--ol-50); border-top: 1px solid var(--ol-100);
  border-bottom: 1px solid var(--ol-100);
  display: flex; align-items: center; justify-content: center;
  padding: 26px 0; flex-wrap: wrap; gap: 0;
}
.ps-trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 36px; border-right: 1px solid var(--ol-100);
  font-size: 13px; font-weight: 600; color: var(--ol-700);
}
.ps-trust-item:last-child { border-right: none; }
.ps-trust-item__icon { font-size: 20px; }

/* Section headers */
.ps-section-header { margin-bottom: 44px; }
.ps-section-header--center { text-align: center; }
.ps-section-header--center .ps-section-sub { margin: 0 auto; }

/* Testimonials */
.ps-testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 44px;
}
.ps-testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px 22px;
  position: relative;
}
.ps-testimonial::before {
  content: '\201C'; font-family: var(--ff-display); font-size: 72px;
  color: var(--ol-100); line-height: 1; position: absolute; top: 14px; left: 20px;
}
.ps-testimonial__text {
  font-size: 14px; line-height: 1.78; color: var(--muted);
  margin-bottom: 18px; padding-top: 26px;
}
.ps-testimonial__footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--ol-50);
}
.ps-testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ol-100); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.ps-testimonial__name { font-weight: 700; font-size: 13.5px; }
.ps-testimonial__loc { font-size: 11.5px; color: var(--muted); }
.ps-testimonial__stars { color: var(--amber); font-size: 12px; margin-top: 1px; }

/* How it works */
.ps-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 52px; }
.ps-step__num {
  font-family: var(--ff-display); font-size: 56px; font-weight: 700;
  color: var(--ol-700); line-height: 1; opacity: 0.85;
}
.ps-step__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--ol-600); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin: 12px 0;
  box-shadow: 0 4px 16px rgba(107,124,58,0.3);
}
.ps-step h3 {
  font-family: var(--ff-display); font-size: 22px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.ps-step p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* CTA banner */
.ps-cta-banner {
  background: linear-gradient(135deg, var(--ol-600), var(--ol-500));
  padding: 64px 0; position: relative; overflow: hidden;
}
.ps-cta-banner::before {
  content: '🐾'; font-size: 240px; position: absolute;
  right: 60px; top: 50%; transform: translateY(-50%);
  opacity: 0.06; pointer-events: none;
}
.ps-cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.ps-cta-banner__h2 {
  font-family: var(--ff-display); font-size: 36px; font-weight: 700;
  color: var(--white); max-width: 400px; line-height: 1.2;
}
.ps-cta-banner__sub { font-size: 15px; color: rgba(255,255,255,0.65); margin-top: 10px; }


/* ══════════════════════════════════════════════════════════════════
   ARCHIVE / LISTINGS
══════════════════════════════════════════════════════════════════ */
.ps-archive-hero { background: var(--charcoal); padding: 52px 0 0; }
.ps-archive-hero__h1 {
  font-family: var(--ff-display); font-size: 40px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.ps-archive-hero__sub { font-size: 15px; color: rgba(255,255,255,0.45); padding-bottom: 40px; }
.ps-archive-hero__sub strong { color: var(--ol-300); }

.ps-filter-strip { background: var(--ol-600); }
.ps-filter-strip__inner {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 14px var(--container-pad); max-width: var(--container-max); margin: 0 auto;
}
.ps-filter-label {
  font-size: 11px; font-weight: 700; color: var(--ol-200);
  letter-spacing: 1px; text-transform: uppercase; margin-right: 4px;
}
.ps-filter-chip {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12); font-size: 12.5px; font-weight: 500;
  padding: 7px 18px; border-radius: 20px; cursor: pointer;
  transition: all var(--transition); font-family: var(--ff-body);
  text-decoration: none;
}
.ps-filter-chip:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.ps-filter-chip.active,
.ps-filter-chip--active {
  background: var(--white); color: var(--ol-700);
  border-color: var(--white); font-weight: 700;
}

.ps-archive-layout { display: grid; grid-template-columns: 272px 1fr; min-height: 70vh; }

/* Sidebar */
.ps-sidebar { background: var(--white); border-right: 1px solid var(--border); padding: 28px 22px; }
.ps-sidebar__section { margin-bottom: 28px; }
.ps-sidebar__h {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--muted);
  padding-bottom: 10px; border-bottom: 1px solid var(--ol-50);
  margin-bottom: 14px;
}
.ps-sidebar__opt {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; cursor: pointer; font-size: 13.5px; color: var(--charcoal);
}
.ps-check {
  width: 18px; height: 18px; border-radius: 4px;
  border: 2px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; transition: all var(--transition);
}
.ps-check--on { background: var(--ol-500); border-color: var(--ol-500); color: var(--white); }

/* Results */
.ps-results-pane { background: var(--cream); padding: 28px 32px; }
.ps-results-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.ps-results-count { font-size: 14px; color: var(--muted); }
.ps-results-count strong { color: var(--charcoal); font-weight: 700; }
.ps-sort-select {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 14px; font-size: 13px; font-family: var(--ff-body);
  color: var(--charcoal); background: var(--white); outline: none; cursor: pointer;
}
.ps-load-more {
  display: block; width: 100%; margin-top: 28px; padding: 14px;
  border: 2px solid var(--ol-200); border-radius: var(--radius-sm);
  background: transparent; color: var(--ol-600); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all var(--transition); font-family: var(--ff-body);
  text-align: center;
}
.ps-load-more:hover { background: var(--ol-50); border-color: var(--ol-400); }

@media (max-width: 900px) {
  .ps-archive-layout { grid-template-columns: 1fr; }
  .ps-sidebar { display: none; }
}


/* ══════════════════════════════════════════════════════════════════
   SINGLE PROVIDER
══════════════════════════════════════════════════════════════════ */
.ps-provider-hero { background: var(--charcoal); padding: 52px 0 0; }
.ps-provider-top { display: flex; gap: 28px; align-items: flex-start; }
.ps-provider-avatar-wrap { position: relative; flex-shrink: 0; }
.ps-provider-avatar {
  width: 128px; height: 128px; border-radius: 18px;
  background: linear-gradient(135deg, var(--ol-200), var(--ol-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 62px; border: 3px solid var(--ol-500);
  overflow: hidden;
}
.ps-provider-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ps-avail-dot {
  position: absolute; bottom: 8px; right: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #4CAF50; border: 2px solid var(--charcoal);
}
.ps-provider-name {
  font-family: var(--ff-display); font-size: 38px; font-weight: 700;
  color: var(--white); margin-bottom: 6px; line-height: 1;
}
.ps-provider-meta-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.ps-meta-rating { color: var(--amber); font-weight: 600; }
.ps-meta-rating span { color: rgba(255,255,255,0.45); font-weight: 400; }
.ps-provider-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.ps-provider-stats-bar {
  display: flex; background: var(--ol-700); margin-top: 32px;
}
.ps-p-stat {
  flex: 1; text-align: center; padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ps-p-stat:last-child { border-right: none; }
.ps-p-stat__val {
  font-family: var(--ff-display); font-size: 26px;
  font-weight: 700; color: var(--white);
}
.ps-p-stat__label { font-size: 11px; color: var(--ol-300); margin-top: 2px; }

.ps-provider-layout { display: grid; grid-template-columns: 1fr 330px; align-items: start; }
.ps-provider-content { padding: 44px 40px 60px 48px; }
.ps-provider-sidebar-col {
  background: var(--white); border-left: 1px solid var(--border);
  padding: 32px 24px; position: sticky; top: 68px;
}

.ps-content-block { margin-bottom: 44px; }
.ps-content-h3 {
  font-family: var(--ff-display); font-size: 23px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--ol-50);
}
.ps-bio { font-size: 15px; line-height: 1.8; color: var(--muted); }
.ps-bio p { margin-bottom: 14px; }

/* Services */
.ps-service-items { display: flex; flex-direction: column; gap: 12px; }
.ps-service-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: var(--ol-50);
  border: 1px solid var(--ol-100); border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ps-service-item:hover { border-color: var(--ol-300); box-shadow: 0 2px 12px rgba(107,124,58,0.08); }
.ps-service-item__left { display: flex; align-items: center; gap: 16px; }
.ps-service-item__icon {
  width: 44px; height: 44px; background: var(--ol-500); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.ps-service-item__name { font-weight: 700; font-size: 14.5px; margin-bottom: 2px; }
.ps-service-item__desc { font-size: 12px; color: var(--muted); }
.ps-service-item__price {
  font-family: var(--ff-display); font-size: 22px;
  font-weight: 700; color: var(--ol-600); white-space: nowrap;
}
.ps-service-item__price small { font-family: var(--ff-body); font-size: 11px; color: var(--muted); font-weight: 400; }

/* Photo grid */
.ps-photo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.ps-photo-cell {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: transform var(--transition);
  background: var(--ol-100); display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.ps-photo-cell:hover { transform: scale(1.04); }
.ps-photo-cell img { width: 100%; height: 100%; object-fit: cover; }

/* Reviews */
.ps-reviews { display: flex; flex-direction: column; gap: 16px; }
.ps-review {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 22px;
}
.ps-review__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.ps-review__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ol-100); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.ps-review__name { font-weight: 700; font-size: 14px; }
.ps-review__date { font-size: 11.5px; color: var(--muted); }
.ps-review__stars { color: var(--amber); font-size: 13px; }
.ps-review__text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.ps-review__pet {
  display: inline-block; margin-top: 10px;
  background: var(--ol-50); color: var(--ol-600);
  border: 1px solid var(--ol-100); font-size: 11px; font-weight: 600;
  padding: 3px 11px; border-radius: 20px;
}

/* Booking sidebar */
.ps-booking-card {
  background: var(--cream); border: 2px solid var(--ol-100);
  border-radius: var(--radius-lg); padding: 22px; margin-bottom: 14px;
}
.ps-booking-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.ps-booking-price {
  font-family: var(--ff-display); font-size: 36px;
  font-weight: 700; color: var(--charcoal);
}
.ps-booking-unit { font-size: 13px; color: var(--muted); }
.ps-booking-rating { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.ps-form-field {
  width: 100%; border: 1.5px solid var(--border); border-radius: 9px;
  padding: 12px 14px; font-size: 13.5px; font-family: var(--ff-body);
  color: var(--charcoal); background: var(--white); outline: none;
  margin-bottom: 10px; transition: border-color var(--transition);
}
.ps-form-field:focus { border-color: var(--ol-400); }
.ps-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ps-book-btn {
  width: 100%; padding: 15px; background: var(--ol-500); color: var(--white);
  border: none; border-radius: 10px; font-size: 15px; font-weight: 700;
  margin-bottom: 10px; cursor: pointer; transition: all var(--transition);
  font-family: var(--ff-body);
}
.ps-book-btn:hover { background: var(--ol-400); transform: translateY(-1px); }
.ps-book-note { font-size: 11.5px; color: var(--muted); text-align: center; }
.ps-msg-btn {
  width: 100%; padding: 13px; background: transparent; color: var(--ol-600);
  border: 2px solid var(--ol-200); border-radius: 10px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all var(--transition); font-family: var(--ff-body); margin-top: 10px;
}
.ps-msg-btn:hover { background: var(--ol-50); border-color: var(--ol-400); }
.ps-guarantee {
  background: var(--ol-50); border: 1px solid var(--ol-100);
  border-radius: 12px; padding: 16px 18px; margin-top: 16px;
}
.ps-guarantee h4 { font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--ol-700); }
.ps-guarantee p { font-size: 12px; color: var(--muted); line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
  .ps-provider-layout { grid-template-columns: 1fr; }
  .ps-provider-sidebar-col { position: static; border-left: none; border-top: 1px solid var(--border); }
  .ps-provider-name { font-size: 28px; }
}


/* ══════════════════════════════════════════════════════════════════
   LOCATION (SEO) PAGE
══════════════════════════════════════════════════════════════════ */
.ps-loc-hero {
  background: linear-gradient(155deg, var(--charcoal) 55%, var(--ol-700) 100%);
  padding: 68px 0 60px; position: relative; overflow: hidden;
}
.ps-loc-hero::after {
  content: '📍'; font-size: 300px; position: absolute;
  right: -20px; top: 50%; transform: translateY(-50%);
  opacity: 0.04; pointer-events: none;
}
.ps-loc-h1 {
  font-family: var(--ff-display); font-size: 50px; font-weight: 700;
  line-height: 1.1; color: var(--white); max-width: 680px; margin-bottom: 18px;
}
.ps-loc-h1 em { font-style: italic; color: var(--ol-300); }
.ps-loc-sub { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 540px; line-height: 1.7; margin-bottom: 32px; }
.ps-loc-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.ps-loc-pill {
  background: rgba(107,124,58,0.2); border: 1px solid rgba(176,196,109,0.2);
  color: var(--ol-300); font-size: 12.5px; font-weight: 600;
  padding: 7px 16px; border-radius: 20px; display: flex; align-items: center; gap: 6px;
}

/* Local intro grid */
.ps-loc-intro { background: var(--white); padding: 72px 0; }
.ps-loc-intro-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.ps-loc-intro-text h2 { font-family: var(--ff-display); font-size: 30px; font-weight: 700; margin-bottom: 18px; }
.ps-loc-intro-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.ps-loc-intro-btns { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

.ps-trust-box { background: var(--ol-50); border: 2px solid var(--ol-100); border-radius: 18px; padding: 28px; }
.ps-trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ps-trust-cell {
  text-align: center; padding: 18px 8px;
  background: var(--white); border-radius: 12px; border: 1px solid var(--ol-100);
}
.ps-trust-val { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: var(--ol-600); }
.ps-trust-label { font-size: 11.5px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

/* Services cards */
.ps-services-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.ps-svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition); cursor: pointer;
  text-decoration: none; color: inherit; display: block;
}
.ps-svc-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); color: inherit; }
.ps-svc-card__icon { font-size: 40px; margin-bottom: 14px; }
.ps-svc-card h3 { font-family: var(--ff-display); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.ps-svc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.ps-svc-from { font-size: 13px; color: var(--ol-600); font-weight: 700; }

/* FAQ */
.ps-faq-section { background: var(--white); padding: 72px 0; }
.ps-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 44px;
}
.ps-faq-item { border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.ps-faq-item:nth-child(even) { border-right: none; }
.ps-faq-item:nth-last-child(-n+2) { border-bottom: none; }
.ps-faq-trigger {
  width: 100%; padding: 22px 24px; text-align: left; background: transparent;
  border: none; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 12px; transition: background var(--transition);
  font-family: var(--ff-body);
}
.ps-faq-trigger:hover,
.ps-faq-trigger.open { background: var(--ol-50); }
.ps-faq-q { font-family: var(--ff-display); font-size: 15.5px; font-weight: 600; color: var(--charcoal); text-align: left; line-height: 1.4; }
.ps-faq-chevron { font-size: 12px; color: var(--ol-500); flex-shrink: 0; transition: transform 0.25s; }
.ps-faq-trigger.open .ps-faq-chevron { transform: rotate(180deg); }
.ps-faq-answer {
  font-size: 14px; color: var(--muted); line-height: 1.75;
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.ps-faq-answer.open { max-height: 300px; padding: 0 24px 22px; }

/* Nearby cities */
.ps-nearby { background: var(--charcoal); padding: 52px 0; }
.ps-nearby h2 { font-family: var(--ff-display); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.ps-city-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ps-city-chip {
  background: rgba(107,124,58,0.1); color: rgba(255,255,255,0.5);
  border: 1px solid rgba(107,124,58,0.18); font-size: 13.5px; font-weight: 500;
  padding: 9px 20px; border-radius: 20px; cursor: pointer;
  transition: all var(--transition); text-decoration: none; display: inline-block;
}
.ps-city-chip:hover { background: var(--ol-600); color: var(--white); border-color: var(--ol-500); }

@media (max-width: 900px) {
  .ps-loc-intro-grid { grid-template-columns: 1fr; }
  .ps-services-row { grid-template-columns: 1fr 1fr; }
  .ps-faq-grid { grid-template-columns: 1fr; }
  .ps-faq-item { border-right: none !important; }
  .ps-faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .ps-faq-item:last-child { border-bottom: none; }
  .ps-loc-h1 { font-size: 36px; }
}


/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.ps-footer { background: #0E1009; border-top: 1px solid #1c1f13; padding: 60px 0 32px; }
.ps-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.ps-footer__logo { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; text-decoration: none; display: block; }
.ps-footer__logo em { color: var(--ol-400); font-style: normal; }
.ps-footer__logo:hover { color: var(--white); }
.ps-footer__desc { font-size: 13.5px; color: #555; line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.ps-footer__social { display: flex; gap: 10px; }
.ps-social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: #1c1f13; border: 1px solid #2a2d1c;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background var(--transition);
  text-decoration: none;
}
.ps-social-btn:hover { background: var(--ol-700); }
.ps-footer__col h4 { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ol-400); margin-bottom: 16px; }
.ps-footer__col a { display: block; font-size: 13.5px; color: #555; margin-bottom: 10px; text-decoration: none; transition: color var(--transition); }
.ps-footer__col a:hover { color: #aaa; }
.ps-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid #1c1f13;
  font-size: 12px; color: #3a3d2e; flex-wrap: wrap; gap: 12px;
}
.ps-footer__bottom-links { display: flex; gap: 20px; }
.ps-footer__bottom a { color: #3a3d2e; text-decoration: none; transition: color var(--transition); }
.ps-footer__bottom a:hover { color: #777; }

@media (max-width: 900px) {
  .ps-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ps-footer__grid { grid-template-columns: 1fr; }
  .ps-testimonials-grid { grid-template-columns: 1fr; }
  .ps-steps { grid-template-columns: 1fr; }
  .ps-hero__h1 { font-size: 38px; }
  .ps-search { flex-direction: column; border-radius: 10px; }
  .ps-search__seg { border-right: none; border-bottom: 1px solid #ebebeb; }
  .ps-search__btn { width: 100%; justify-content: center; min-height: 52px; }
  .ps-trust-strip { flex-direction: column; }
  .ps-trust-item { border-right: none; border-bottom: 1px solid var(--ol-100); padding: 12px 24px; }
  .ps-trust-item:last-child { border-bottom: none; }
  .ps-services-row { grid-template-columns: 1fr; }
  .ps-cta-banner__inner { flex-direction: column; gap: 24px; }
  .ps-photo-grid { grid-template-columns: repeat(2,1fr); }
}
