:root {
  --ink: #1d2422;
  --muted: #596762;
  --paper: #fffdf8;
  --soft: #f4efe5;
  --leaf: #386b52;
  --leaf-dark: #254d3c;
  --clay: #c86f4f;
  --sky: #d9e8ee;
  --line: rgba(29, 36, 34, 0.12);
  --shadow: 0 24px 80px rgba(27, 43, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--leaf);
  border-radius: 50%;
  font-weight: 900;
}

.nav {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--leaf);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(240px, 1fr);
  align-items: end;
  gap: 28px;
  padding: 150px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 25, 20, 0.72) 0%, rgba(13, 25, 20, 0.42) 46%, rgba(13, 25, 20, 0.05) 100%),
    url("assets/hero-dogs.jpg") center / cover;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 253, 248, 0));
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

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

.hero .eyebrow {
  color: #ffd7c8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--leaf);
}

.button.primary:hover {
  background: var(--leaf-dark);
}

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

.hero-panel {
  justify-self: end;
  max-width: 340px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel strong,
.hero-panel span,
.contact-card span {
  display: block;
}

.hero-panel span {
  margin-top: 6px;
  color: var(--muted);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: -26px auto 0;
  padding: 0 clamp(20px, 4vw, 0px);
}

.trust-strip div {
  min-height: 112px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span,
.card p,
.about-copy p,
.about-points span,
.price-card p,
.care-copy p,
.contact-section p,
.faq-list p,
.form-note {
  color: var(--muted);
}

.section,
.about-section,
.contact-section {
  padding: 94px clamp(20px, 5vw, 72px);
}

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

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.price-card,
.contact-card,
.booking-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.card,
.price-card {
  padding: 26px;
}

.card-icon {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}


.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  background: white;
}

.about-copy {
  max-width: 720px;
}

.about-photo {
  width: 132px;
  height: 132px;
  margin-bottom: 24px;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(27, 43, 38, 0.18);
  object-fit: cover;
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-points div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points span {
  margin-top: 6px;
}

.care-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 84px clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.care-image {
  min-height: 520px;
  border-radius: 8px;
  background: url("assets/care-dog.jpg") center / cover;
  box-shadow: var(--shadow);
}

.care-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.66);
  border-left: 4px solid var(--leaf);
}

.price-card.featured {
  color: white;
  background: var(--leaf);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.price {
  margin-bottom: 14px;
  color: var(--leaf);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.featured .price {
  color: white;
}

.testimonial-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink);
  color: white;
}

.testimonial-band figure {
  margin: 0;
  padding: clamp(38px, 6vw, 74px);
  background: rgba(255, 255, 255, 0.04);
}

blockquote {
  margin: 0 0 24px;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.12;
}

figcaption {
  color: var(--sky);
}

.faq-section {
  background: white;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  background: var(--sky);
}

.contact-card {
  max-width: 420px;
  margin-top: 30px;
  padding: 24px;
}

.contact-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--leaf-dark);
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.booking-form .button {
  width: 100%;
  border-radius: 8px;
  font-size: 1rem;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer a {
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .care-band,
  .about-section,
  .contact-section,
  .testimonial-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    padding-top: 120px;
    background-position: 58% center;
  }

  .hero-panel {
    justify-self: start;
  }

  .trust-strip,
  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .care-image {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .hero {
    min-height: 720px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .button {
    width: 100%;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
