/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #2D2A26;
  background: #FAF8F5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== VARIABLES ===== */
:root {
  --brand: #7B9E87;
  --brand-dark: #5A7A64;
  --brand-light: #E8F0EB;
  --accent: #C8956C;
  --bg: #FAF8F5;
  --bg-alt: #F2EEEA;
  --text: #2D2A26;
  --text-light: #6B6560;
  --heading: 'Cormorant Garamond', serif;
  --body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section-label {
  display: block;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-light);
  max-width: 58ch;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
}
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); }

.btn--large {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
.nav--scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.08); }

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__brand {
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-dark);
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--brand); }
.nav__phone svg { flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(123,158,135,0.15), transparent),
    radial-gradient(ellipse 60% 60% at 75% 60%, rgba(200,149,108,0.12), transparent),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(123,158,135,0.06), transparent),
    var(--bg-alt);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__content { position: relative; z-index: 2; padding: 2rem; }

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.35rem 1rem;
  border: 1.5px solid rgba(200,149,108,0.35);
  border-radius: 50px;
}

.hero__title {
  font-family: var(--heading);
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-light);
  max-width: 42ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero__paw {
  position: absolute;
  bottom: -30px;
  right: 5%;
  width: clamp(140px, 18vw, 220px);
  color: var(--brand);
  pointer-events: none;
}

/* ===== SERVICES ===== */
.services {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--bg);
}

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

.service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  color: var(--brand-dark);
}
.service-card__icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== WHY SECTION ===== */
.why {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--bg-alt);
}

.why__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.why__text p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  max-width: 50ch;
}

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}

.stat-card__number {
  display: block;
  font-family: var(--heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.stat-card--accent {
  grid-column: 1 / -1;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}
.stat-card--accent .stat-card__icon {
  width: 32px;
  height: 32px;
  color: var(--brand-dark);
  flex-shrink: 0;
}
.stat-card--accent .stat-card__label {
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.4;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--bg);
  text-align: center;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #D4A843;
}
.review-card__stars svg { width: 16px; height: 16px; }

.review-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card cite {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
}

/* ===== LOCATION ===== */
.location {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--bg-alt);
}

.location__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.location__address {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.location__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.location__phone:hover { color: var(--brand); }

.location__hours h3 {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.location__hours p {
  font-size: 1rem;
  color: var(--text-light);
}
.location__hours-note {
  margin-top: 0.5rem;
  font-size: 0.88rem !important;
  font-style: italic;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
}
.location__map iframe { width: 100%; height: 320px; }

/* ===== CTA ===== */
.cta {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--brand);
  text-align: center;
}
.cta__title {
  font-family: var(--heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.cta .btn--primary {
  background: #fff;
  color: var(--brand-dark);
  font-size: 1.2rem;
  font-weight: 700;
}
.cta .btn--primary:hover { background: rgba(255,255,255,0.9); }
.cta__address {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

/* ===== FOOTER ===== */
.footer {
  background: #1E1C1A;
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 2rem;
}

.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__name {
  display: block;
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.footer__tagline { font-size: 0.85rem; }

.footer__contact p {
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}
.footer__contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer__contact a:hover { color: #fff; }

.footer__credit {
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}
.footer__credit a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__credit a:hover { color: rgba(255,255,255,0.8); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
  .why__layout { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .location__layout { grid-template-columns: 1fr; }
  .location__map { min-height: 260px; }
  .location__map iframe { height: 260px; }
  .footer__inner { flex-direction: column; text-align: center; align-items: center; }
  .stat-card--accent .stat-card__label { text-align: center; }
  .hero__paw { display: none; }
}

@media (max-width: 480px) {
  .nav__inner { height: 56px; }
  .nav__brand { font-size: 1.15rem; }
  .nav__phone span { display: none; }
  .hero { padding-top: 56px; }
  .why__stats { grid-template-columns: 1fr; }
  .stat-card--accent { flex-direction: column; text-align: center; }
}
