* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
}

.logo img,
.footer-logo img {
  width: 110px;
}

.logo strong {
  display: block;
  font-size: 1.3rem;
}

.logo span {
  display: block;
  font-size: 0.8rem;
  color: #555;
}

nav {
  display: flex;
  gap: 36px;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 620px;
  padding: 60px 7%;
  background: url("/images/benny-hero.png") no-repeat center center;
  background-size: 100% 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 0 0 24px;
}

.hero p {
  max-width: 500px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-paw {
  width: 44px;
  margin-top: 26px;
  height: auto;
  display: block;
  pointer-events: none;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 6px;
  font-weight: 700;
}

.primary {
  background: #B8864A;
  color: #fff;
}

.secondary {
  border: 1px solid #ccc;
  background: #fff;
}

.light {
  background: #fff;
  color: #111;
}

.services {
  padding: 70px 7%;
  text-align: center;
}

.center {
  text-align: center;
}

.services h2,
.about h2,
.cta h2,
.content-card h1 {
  font-size: 2.2rem;
  margin-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  margin-top: 45px;
  align-items: center;
}

.service-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-grid > div img {
  display: block;
  max-width: 100%;
  height: auto;
}

.card {
  text-align: left;
  padding: 36px;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  background: #fff;
}

.icon {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.card p {
  color: #444;
  line-height: 1.6;
}

.card a {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  padding: 80px 7%;
  background: #fafafa;
}

.about p {
  line-height: 1.7;
  color: #333;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 42px;
  border-left: 1px solid #ddd;
  padding-left: 60px;
}

.value-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.value-item img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.value-item p {
  margin: 0;
}

.cta {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(320px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 7%;
  min-height: 160px;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.cta p {
  color: #ddd;
}

.cta-art {
  align-self: stretch;
  min-height: 160px;
  background-image: url("/images/project_ben.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}

.cta-copy {
  max-width: 520px;
}

.cta-paw {
  width: 38px;
  height: auto;
  display: block;
  justify-self: end;
}

.button-cta {
  background: #B8864A;
  color: white;
}

.button-cta::after {
  content: "→";
  margin-left: 14px;
  font-size: 1.35em;
  font-weight: 900;
  line-height: 1;
}

footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 50px 7%;
  background: #fff;
}

.footer-logo {
  width: 80px;
  display: block;
  margin-bottom: 10px;
}

footer a {
  display: block;
  margin: 8px 0;
  color: #444;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-title {
  font-weight: 700;
  margin: 0;
}

.footer-copy,
.copyright {
  margin: 0.2rem 0 0;
  color: #666;
}

/* Minimal support styles for the extra routes */
.page-shell {
  width: 100%;
}

.content-grid,
.content-card,
.card-accent,
.contact-form,
.notice,
.detail-list,
.link-stack {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 1.25rem;
  padding: 2rem 7%;
}

.content-card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 10px;
}

.card-accent {
  background: #faf7f0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(24, 21, 18, 0.14);
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
}

.notice {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
}

.notice-success {
  background: rgba(77, 143, 108, 0.16);
}

.notice-error {
  background: rgba(178, 76, 76, 0.16);
}

.detail-list {
  margin: 1.25rem 0 0;
}

.detail-list div + div {
  margin-top: 1rem;
}

.detail-list dt {
  font-weight: 700;
}

.detail-list dd {
  margin: 0.2rem 0 0;
}

.link-stack {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

@media (max-width: 850px) {
  .site-header {
    height: auto;
    padding: 24px;
    flex-direction: column;
    gap: 20px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
  }

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

  .values {
    grid-template-columns: 1fr;
    border-left: none;
    padding-left: 0;
  }

  .cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 7%;
  }

  footer {
    grid-template-columns: 1fr;
  }

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