/* ─── Variables ─── */
:root {
  --bg: #F9F5F0;
  --bg-alt: #F0EBE1;
  --fg: #1A1A18;
  --fg-muted: #6B6B63;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --amber: #D4920A;
  --amber-light: #F5C547;
  --border: #DDD8CE;
  --card-bg: #FFFFFF;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ─── Nav ─── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ─── Hero ─── */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--bg);
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--green);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 44ch;
}

/* Hero Visual (right side) */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-card-paw {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-card-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0.95;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.hero-stat {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--card-bg);
}

.hero-stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.2rem;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ─── Services ─── */
.services {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.1);
}

.service-card--featured {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.service-card--featured .service-title,
.service-card--featured .service-price,
.service-card--featured .service-desc {
  color: rgba(255,255,255,0.9);
}

.service-card--featured .service-title { color: #fff; }

.service-icon {
  margin-bottom: 1.25rem;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.service-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Areas ─── */
.areas {
  padding: 5rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.areas-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.areas-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.area-tag {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  transition: background 0.2s, border-color 0.2s;
}

.area-tag:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ─── Quote ─── */
.quote {
  padding: 5rem 2rem;
  background: var(--green);
}

.quote-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote-cite {
  font-style: normal;
}

.quote-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* ─── Closing ─── */
.closing {
  padding: 6rem 2rem;
  background: var(--bg);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--green);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ─── Footer ─── */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}

.footer-loc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-sub {
    max-width: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .areas-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 1.5rem 3rem;
  }
  .hero-headline {
    font-size: 1.9rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .hero-stat:last-child {
    border-bottom: none;
  }
}