:root {
  --cream: #FDF8F2;
  --sage: #7A9E7E;
  --sage-light: #A8C5AB;
  --sage-dark: #5A7D5E;
  --charcoal: #2D2D2D;
  --warm-gray: #6B6560;
  --light-tan: #F0E8DB;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(122, 158, 126, 0.12);
}
.nav-brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-icon { font-size: 1.4rem; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--charcoal); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--warm-gray); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--sage-dark); }

/* HERO */
.hero {
  position: relative;
  padding: 5rem 4% 4rem;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
}
.hero-bg-shape {
  position: absolute;
  right: -8%;
  top: 10%;
  width: 48%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(122,158,126,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--warm-gray);
  max-width: 46ch;
  line-height: 1.7;
}
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  width: 280px;
  height: 340px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(45,45,45,0.10), 0 4px 16px rgba(122,158,126,0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.card-dog-ears {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 40px;
  background: var(--sage-light);
  border-radius: 0 0 40px 40px;
}
.card-content { text-align: center; }
.card-paw { font-size: 4rem; margin-bottom: 1.5rem; }
.card-lines { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.card-line { height: 8px; border-radius: 4px; background: var(--light-tan); }
.card-line-1 { width: 140px; }
.card-line-2 { width: 180px; }
.card-line-3 { width: 120px; }
.card-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
}

/* STATS ROW */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 3rem 4%;
  background: var(--white);
  border-top: 1px solid rgba(122,158,126,0.10);
  border-bottom: 1px solid rgba(122,158,126,0.10);
}
.stat { text-align: center; padding: 0 3rem; }
.stat-number { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--sage-dark); }
.stat-label { display: block; font-size: 0.8rem; color: var(--warm-gray); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(122,158,126,0.20); }

/* SECTIONS SHARED */
.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--charcoal);
  max-width: 28ch;
}
.section-header { margin-bottom: 3rem; }

/* WHY SECTION */
.why-section { padding: 5rem 4%; background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(45,45,45,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,45,45,0.10); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.65; }

/* SERVICES */
.services-section { padding: 5rem 4%; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(122,158,126,0.12);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
  border-radius: 16px 16px 0 0;
}
.service-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: rgba(122,158,126,0.2); line-height: 1; margin-bottom: 1rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.65; }
.service-card-soon { opacity: 0.65; }
.service-card-soon::before { background: var(--warm-gray); }

/* PROCESS */
.process-section { padding: 5rem 4%; background: var(--cream); }
.process-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.step { display: flex; align-items: flex-start; gap: 1.5rem; }
.step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.step-connector { width: 2px; height: 100%; min-height: 60px; background: linear-gradient(to bottom, var(--sage-light), rgba(168,197,171,0.2)); margin-left: 23px; align-self: stretch; }
.step-content { padding-bottom: 2.5rem; }
.step-content h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.4rem; }
.step-content p { font-size: 0.9rem; color: var(--warm-gray); }

/* TESTIMONIALS */
.testimonials-section { padding: 5rem 4%; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(122,158,126,0.10);
}
.testimonial-stars { color: var(--sage-dark); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-quote { font-size: 0.95rem; line-height: 1.7; color: var(--charcoal); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { font-size: 0.82rem; color: var(--warm-gray); font-weight: 500; }

/* CLOSING */
.closing-section { padding: 5rem 4%; background: var(--cream); }
.closing-bg { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.closing-sub { font-size: 1.1rem; color: var(--warm-gray); max-width: 52ch; margin: 0 auto 2.5rem; line-height: 1.7; }
.closing-paws { font-size: 1.5rem; letter-spacing: 0.5rem; }

/* FOOTER */
.site-footer {
  padding: 3rem 4% 2rem;
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  text-align: center;
}
.footer-content { max-width: 600px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand .brand-icon { font-size: 1.4rem; }
.footer-brand .brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: white; }
.footer-tagline { font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-contact { font-size: 0.85rem; margin-bottom: 0.4rem; }
.footer-legal { font-size: 0.8rem; opacity: 0.5; }

/* MOBILE */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .stats-row { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section-title { max-width: none; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .stat { padding: 0 1.5rem; }
}