:root {
  --bg: #F9F6F1;
  --fg: #1A1A1A;
  --accent: #2C5F2E;
  --accent-warm: #E07B39;
  --muted: #6B6560;
  --surface: #F0EBE3;
  --border: #E0D9CF;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}
.nav-location {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
}
.badge-icon { font-size: 1.5rem; }
.badge-main {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}
.badge-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}
.hero-dog-art svg {
  width: 200px;
  height: 200px;
}

/* ── SHARED SECTION ── */
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ── THE WALK ── */
.the-walk {
  padding: 80px 40px;
  background: var(--surface);
}
.the-walk .section-label,
.the-walk .section-headline {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.walk-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
}
.walk-card {
  background: var(--bg);
  padding: 40px 36px;
}
.walk-card-icon {
  margin-bottom: 20px;
}
.walk-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.walk-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PRICING ── */
.pricing {
  padding: 80px 40px;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pricing-card-accent .price-desc,
.pricing-card-accent .price-note {
  color: rgba(255,255,255,0.8);
}
.pricing-card-accent .price-per { color: rgba(255,255,255,0.7); }
.pricing-card-accent .price-features span { color: rgba(255,255,255,0.9); }
.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.price-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.price-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.price-features span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  padding-left: 20px;
  position: relative;
}
.price-features span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.pricing-card-accent .price-features span { color: #fff; }
.pricing-card-accent .price-features span::before { color: #fff; }
.price-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* Pricing header (above grid) */
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Service name label inside each card */
.price-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 10px;
  margin-top: 4px;
}
.pricing-card-accent .price-name { color: rgba(255,255,255,0.7); }

/* "Best value" badge */
.pricing-badge {
  display: inline-block;
  background: var(--accent-warm);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* Book Now CTA inside pricing cards */
.pricing-cta {
  display: block;
  margin-top: 24px;
  padding: 11px 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.pricing-cta:hover { background: #234A26; }
.pricing-cta-light {
  background: #fff;
  color: var(--accent);
}
.pricing-cta-light:hover { background: #F0EBE3; }

/* Competitor comparison note */
.pricing-compare {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 600px;
  margin: 32px auto 0;
  line-height: 1.6;
}

/* ── ABOUT ── */
.about {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.proof-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── CLOSING ── */
.closing {
  padding: 100px 40px;
  text-align: center;
  background: var(--fg);
  color: var(--bg);
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--bg);
}
.closing-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(249,246,241,0.75);
  margin-bottom: 28px;
}
.closing-cta {
  font-size: 0.9rem;
  color: var(--accent-warm);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── FOOTER ── */
.footer {
  padding: 24px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.footer-meta { font-size: 0.85rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav, .hero, .the-walk, .pricing, .about, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto; }
  .hero-visual { order: -1; }
  .walk-grid { grid-template-columns: 1fr; }
  .pricing-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .nav-location { display: none; }
}