:root {
  --forest: #244332;
  --pine: #315a42;
  --moss: #6d8f54;
  --clay: #b5653f;
  --sun: #f1c96b;
  --cream: #fff8eb;
  --paper: #fffdf7;
  --ink: #233126;
  --muted: #5f6f62;
  --line: #e6dccb;
  --shadow: 0 18px 45px rgba(36, 67, 50, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(36, 67, 50, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--clay);
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(36, 67, 50, 0.86), rgba(36, 67, 50, 0.62), rgba(36, 67, 50, 0.22)),
    url("images/dogs-by-lake.png") center / cover,
    var(--forest);
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.25rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--forest);
  background: var(--sun);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffd87b;
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.78);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.section,
.value-section {
  padding: 88px 0;
}

.value-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.value-grid > p,
.section-heading + p,
.contact-grid p,
.split p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.card {
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(36, 67, 50, 0.08);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card h3,
.card p,
.service-details {
  margin-right: 28px;
  margin-left: 28px;
}

.card h3 {
  margin-top: 24px;
}

.card > p {
  margin-bottom: 28px;
}

.card p,
.feature-list p {
  color: var(--muted);
}

.service-details {
  margin-top: -8px;
  margin-bottom: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-details p {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 800;
}

.service-details ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-details li + li {
  margin-top: 7px;
}

.feature-list p {
  margin: 0;
}

.about-section {
  background: #eef4e7;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.image-frame {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--moss), var(--forest));
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--forest);
  font-weight: 800;
}

.why-section {
  background: var(--paper);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.feature-list article {
  padding-top: 18px;
  border-top: 4px solid var(--moss);
}

.contact-section {
  color: white;
  background: var(--forest);
}

.contact-section h2,
.contact-section .eyebrow {
  color: white;
}

.contact-section .eyebrow {
  color: var(--sun);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 44px;
  align-items: center;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.contact-card strong {
  color: var(--sun);
}

.site-footer {
  padding: 28px 16px;
  color: var(--cream);
  text-align: center;
  background: #17291f;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: 600px;
    background:
      linear-gradient(180deg, rgba(36, 67, 50, 0.82), rgba(36, 67, 50, 0.62)),
      url("images/dogs-by-lake.png") center / cover,
      var(--forest);
  }

  .value-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .section,
  .value-section {
    padding: 64px 0;
  }

  .hero-content {
    padding: 72px 0;
  }

  .nav-links {
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .image-frame,
  .image-frame img {
    min-height: 300px;
  }
}
