/* Kelly's K9s — Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burnt: #d95600;
  --burnt-light: #f4e8df;
  --burnt-deep: #a33d00;
  --cream: #faf7f2;
  --bark: #3b2e1e;
  --bark-light: #6b5440;
  --sage: #7a9e7e;
  --sage-light: #e8f0e8;
  --warm-white: #fff9f4;
  --muted: #9e8a76;
  --border: #e8ddd0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--bark);
  font-size: 15px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Papyrus', fantasy;
  font-size: 1.45rem;
  color: var(--burnt);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--burnt); }
.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--bark-light);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--burnt); }
.nav-cta {
  background: var(--burnt);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition: background 0.2s;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.nav-cta:hover { background: var(--burnt-deep) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: var(--bark);
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(217,86,0,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-text {
  padding: 5rem 3rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burnt);
  font-weight: 500;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: #fff;
  font-weight: 700;
}
.hero-title em { font-style: italic; color: var(--burnt); }
.hero-sub {
  color: #c4b8a8;
  font-size: 15px;
  max-width: 400px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-badges {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #e8ddd0;
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 20px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-image { position: relative; overflow: hidden; }
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.8;
  mix-blend-mode: luminosity;
  filter: sepia(15%) contrast(1.1);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bark) 0%, transparent 35%);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--bark);
  padding: 4rem 4rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(217,86,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burnt);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--burnt); }
.page-hero p {
  color: #c4b8a8;
  font-size: 15px;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--burnt);
  padding: 0.9rem 4rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,0.92);
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.02em;
}
.trust-item::before { content: '✦'; font-size: 8px; opacity: 0.7; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--burnt);
  color: #fff;
  padding: 12px 24px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--burnt-deep); transform: translateY(-1px); }
.btn-ghost {
  color: #c4b8a8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--burnt);
  border: 1.5px solid var(--burnt);
  padding: 11px 22px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--burnt); color: #fff; }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burnt);
  font-weight: 500;
  margin-bottom: 0.85rem;
  display: block;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.25;
  color: var(--bark);
  margin-bottom: 1.25rem;
}
.section-heading em { font-style: italic; color: var(--bark-light); }
.section-heading.light { color: #fff; }
.section-heading.light em { color: var(--burnt); }
.body-text {
  color: var(--bark-light);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
}

/* ── WRAPPER ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 5rem 4rem; }
.wrap-narrow { max-width: 800px; margin: 0 auto; padding: 5rem 4rem; }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: var(--burnt);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── SERVICE CARDS ── */
.services-section { background: var(--bark); padding: 5rem 4rem; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(217,86,0,0.5);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(217,86,0,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 22px;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.7rem;
  font-weight: 400;
}
.service-desc { color: #a89c8c; font-size: 13.5px; line-height: 1.75; font-weight: 300; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 1.2rem; color: var(--burnt); font-size: 13px; font-weight: 500; text-decoration: none;
}

/* ── PRICING CARD ── */
.pricing-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 3rem;
}
.pricing-header {
  background: var(--burnt);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 400;
}
.pricing-body { padding: 1.75rem 2rem; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.price-row:last-child { border-bottom: none; }
.price-label { color: var(--bark-light); font-size: 14px; }
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--burnt);
  font-weight: 700;
  white-space: nowrap;
}
.price-note { font-size: 12px; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 5rem 4rem; background: var(--cream); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--burnt);
  line-height: 0.5;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.55;
}
.testimonial-text {
  color: var(--bark-light);
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.testimonial-name { font-size: 13px; font-weight: 500; color: var(--bark); font-family: 'DM Sans', sans-serif; }
.testimonial-dog { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── AREAS ── */
.areas-section { background: var(--burnt-light); padding: 4rem; text-align: center; }
.areas-inner { max-width: 700px; margin: 0 auto; }
.area-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; margin-top: 1.5rem; }
.area-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 7px 17px;
  font-size: 13.5px;
  color: var(--bark);
}

/* ── CTA ── */
.cta-section { background: var(--bark); padding: 5rem 4rem; text-align: center; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}
.cta-title em { color: var(--burnt); font-style: italic; }
.cta-sub { color: #a89c8c; font-size: 15px; margin-bottom: 2.5rem; font-weight: 300; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1rem 1.75rem;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  margin-top: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-phone:hover { background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
footer {
  background: #231a10;
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--burnt); }
.footer-copy { font-size: 12px; color: #6b5e50; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  color: #6b5e50; font-size: 12px; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.2s;
}
.footer-social a:hover { color: var(--burnt); }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.about-body p { color: var(--bark-light); font-size: 15px; line-height: 1.9; font-weight: 300; margin-bottom: 1.25rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-images { display: grid; gap: 1rem; }
.about-images img { width: 100%; border-radius: 16px; object-fit: cover; aspect-ratio: 1; display: block; }
.sig {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--burnt);
  margin-top: 1.5rem;
  display: block;
}

/* ── SERVICE DETAIL PAGE ── */
.service-detail { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.service-detail-img {
  border-radius: 20px;
  overflow: hidden;
  background: var(--burnt-light);
  aspect-ratio: 4/3;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-body p {
  color: var(--bark-light);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.walk-locations {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.walk-locations h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--bark);
  margin-bottom: 1rem;
}
.walk-locations ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.walk-locations li {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 13px;
  color: var(--bark-light);
}

/* ── RESCUE PAGE ── */
.rescue-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.rescue-intro img { width: 100%; border-radius: 20px; display: block; }
.rescue-callout {
  background: var(--sage-light);
  border: 1px solid #c8dcc8;
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
}
.rescue-callout h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--bark);
  margin-bottom: 1rem;
}
.rescue-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* ── MOBILE ── */
@media (max-width: 760px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: 0.85rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 3rem 1.5rem; }
  .hero-image { display: none; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  .wrap, .wrap-narrow { padding: 3rem 1.5rem; }
  .services-section, .testimonials-section, .areas-section, .cta-section { padding: 3rem 1.5rem; }
  .trust-bar { padding: 1rem 1.25rem; gap: 0.75rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid, .service-detail, .rescue-intro { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  [style*="repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .about-images { grid-template-columns: 1fr 1fr; }
}
