* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #f7f4ee;
  line-height: 1.6;
}

.hero {
  min-height: 82vh;
  background-image: url("big-bear-dog-house-header.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 24px;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}


.brand {
  font-weight: 800;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
}

.nav-cta {
  color: white;
  border: 1px solid rgba(255,255,255,0.75);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.22);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content {
  max-width: 1200px;
  margin: 130px auto 0;
  text-align: center;
  padding: 20px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #d5a35f;
}

.hero .eyebrow {
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75);
}

h1 {
  font-size: clamp(2.55rem, 6.6vw, 6.25rem);
  line-height: 0.98;
  margin: 12px auto 24px;
  color: #ffffff;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
}

.lead {
  font-size: clamp(1.35rem, 3vw, 2rem);
  max-width: 760px;
  margin: 0 auto;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 26px;
  line-height: 1.12;
}

.intro {
  text-align: center;
  max-width: 1250px;
}

.intro h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  white-space: nowrap;
}

.intro p:last-child {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
}


.services {
  text-align: center;
}

.services .cards {
  text-align: left;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  background: white;
  padding: 34px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(31, 41, 51, 0.08);
  border-top: 5px solid #d5a35f;
}

.card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.contact {
  text-align: center;
  border-top: 1px solid #e5ded2;
}

.contact-grid {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-grid a,
.contact-grid span {
  background: white;
  padding: 16px;
  border-radius: 14px;
  color: #1f2933;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 30px 24px;
  color: #6b7280;
}

@media (max-width: 760px) {
  .nav {
    align-items: center;
    gap: 12px;
  }

  .nav-cta {
    font-size: 0.92rem;
    padding: 8px 10px;
  }

  .hero {
    min-height: 78vh;
    padding: 18px;
  }

  .hero-content {
    margin-top: 90px;
    padding: 12px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 4.1rem);
    white-space: nowrap;
  }

  .intro h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    white-space: normal;
  }

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