:root {
  color-scheme: light;
  --ink: #24312b;
  --muted: #5d6b62;
  --paper: #fbfaf6;
  --wash: #eef4ef;
  --line: #dce5dc;
  --leaf: #356854;
  --leaf-dark: #214a3a;
  --sun: #d79a41;
  --rose: #b95f7c;
  --blue: #6d92a8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(34, 49, 42, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
button,
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: rgba(53, 104, 84, 0.18);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 99;
  transform: translateY(-160%);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(36, 49, 43, 0.12);
  background: #fbfaf6;
  background: rgba(251, 250, 246, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--leaf-dark);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  min-height: calc(92vh - 66px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 4vw, 42px);
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 42px);
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero h1 {
  max-width: 12.5ch;
  margin: 0;
  font-size: 4rem;
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.testimonials-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: 420px;
}

.page-hero-photo {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
  box-shadow: 0 16px 36px rgba(34, 49, 42, 0.1);
}

.page-hero-photo img {
  display: block;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-copy {
  max-width: 640px;
}

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

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

p,
li,
td,
th {
  overflow-wrap: break-word;
}

h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--leaf-dark);
  font-size: 4.75rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-text {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.22rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(53, 104, 84, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--leaf-dark);
}

.hero-media {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.hero-media picture {
  display: block;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 26px -18px -18px 28px;
  z-index: -1;
  border-radius: 8px;
  background: var(--wash);
  border: 1px solid var(--line);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  border: 8px solid var(--white);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 55px rgba(34, 49, 42, 0.18);
}

.hero-media figcaption {
  width: min(90%, 390px);
  margin: 16px auto 0;
  position: relative;
  border-left: 5px solid var(--sun);
  border-radius: 8px;
  padding: 15px 18px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(34, 49, 42, 0.1);
}

.band {
  background: var(--wash);
}

section {
  padding: clamp(54px, 8vw, 86px) clamp(18px, 4vw, 42px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--leaf-dark);
  font-size: 2.75rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--leaf-dark);
  font-size: 1.18rem;
  line-height: 1.2;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.intro .section-heading {
  margin: 0;
  text-align: left;
}

.intro p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.walk-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 84px) clamp(18px, 4vw, 42px) 0;
}

.walk-copy {
  max-width: 470px;
}

.walk-copy h2 {
  margin: 0;
}

.walk-copy p:last-child {
  max-width: 450px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.walk-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.walk-video-card,
.walk-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(34, 49, 42, 0.1);
}

.walk-video-card video,
.walk-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 90 / 58;
  background: var(--wash);
  object-fit: cover;
}

.walk-photo-card picture {
  display: block;
  background: var(--wash);
}

.walk-video-card figcaption,
.walk-photo-card figcaption {
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  font-weight: 800;
}

.services,
.packages,
.care-gallery,
.testimonial-section,
.contact {
  max-width: 1180px;
  margin: 0 auto;
}

.care-gallery {
  padding-top: clamp(58px, 7vw, 84px);
}

.image-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.image-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(34, 49, 42, 0.08);
}

.image-card.large {
  grid-row: span 2;
}

.image-card picture {
  display: block;
  overflow: hidden;
  background: var(--wash);
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.image-card.large img {
  min-height: 520px;
}

.image-card figcaption {
  margin: 0;
  padding: 15px 18px;
  color: var(--muted);
  font-weight: 800;
}

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.package-card {
  min-height: 235px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(34, 49, 42, 0.07);
}

.service-card p,
.package-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f6eadb;
  color: #8a5523;
  font-weight: 900;
}

.pricing,
.visual-split {
  padding-inline: max(18px, calc((100vw - 1180px) / 2 + 42px));
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(520px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.visual-copy .section-heading {
  margin: 0;
  text-align: left;
}

.visual-copy p {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.pricing-wrap {
  min-width: 0;
}

.pricing-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-table caption {
  padding: 0 0 14px;
  color: var(--muted);
  font-weight: 800;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.pricing-table thead th {
  border-top: 0;
  background: var(--leaf-dark);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-table tbody th {
  color: var(--ink);
  font-weight: 800;
}

.pricing-table td:nth-child(2) {
  color: var(--muted);
}

.pricing-table strong {
  color: var(--rose);
  font-size: 1.12rem;
}

.package-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.package-card strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 1.25rem;
}

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

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(53, 104, 84, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(34, 49, 42, 0.09);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--leaf), var(--sun));
}

.testimonial-photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--wash);
}

.testimonial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.quote-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--wash);
  color: var(--leaf-dark);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card p {
  margin: 0;
  color: #37453d;
  font-size: 1.04rem;
  line-height: 1.65;
}

.testimonial-card footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.testimonial-card strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 1.08rem;
  line-height: 1.2;
}

.testimonial-card footer span {
  display: block;
  margin-top: 2px;
  color: var(--rose);
  font-weight: 800;
  line-height: 1.25;
}

.testimonial-note {
  padding-inline: max(18px, calc((100vw - 1180px) / 2 + 42px));
}

.testimonial-note-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonial-note-layout .section-heading {
  margin: 0 0 24px;
  text-align: left;
}

.note-photo {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(34, 49, 42, 0.08);
}

.note-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
  color: var(--muted);
  font-weight: 750;
}

.addons {
  padding-inline: max(18px, calc((100vw - 1180px) / 2 + 42px));
}

.addon-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.addon-list li {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--white);
}

.addon-list span {
  color: var(--muted);
  font-weight: 700;
}

.addon-list strong {
  color: var(--leaf-dark);
  white-space: nowrap;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr) minmax(270px, 0.64fr);
  gap: clamp(20px, 3vw, 32px);
}

.contact-photo {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--wash);
  box-shadow: 0 12px 28px rgba(34, 49, 42, 0.08);
}

.contact-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact p:last-child {
  max-width: 690px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 360px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
  color: var(--leaf-dark);
  box-shadow: 0 10px 26px rgba(34, 49, 42, 0.08);
}

.contact-note p {
  margin: 0;
}

.contact-note span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-note a {
  color: var(--leaf-dark);
  display: inline-block;
  max-width: 100%;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-note a:hover,
.contact-note a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  h1 {
    max-width: 12.5ch;
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .hero-text,
  .page-hero p:last-child {
    font-size: 1.12rem;
  }

  .testimonials-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .page-hero-copy,
  .page-hero h1,
  .page-hero p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .page-hero-photo {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-media {
    max-width: 560px;
  }

  .intro,
  .walk-preview,
  .contact {
    display: block;
  }

  .visual-split,
  .contact-visual,
  .testimonial-note-layout {
    grid-template-columns: 1fr;
  }

  .visual-copy .section-heading,
  .testimonial-note-layout .section-heading {
    text-align: center;
  }

  .visual-copy p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

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

  .image-card.large {
    grid-row: auto;
  }

  .image-card.large img {
    min-height: 300px;
  }

  .note-photo img {
    min-height: 300px;
  }

  .intro p:last-child,
  .walk-copy p:last-child,
  .contact-note {
    margin-top: 22px;
  }

  .walk-media-grid {
    margin-top: 24px;
  }

  .service-grid,
  .package-grid,
  .testimonial-grid,
  .addon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 0.95rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .service-grid,
  .package-grid,
  .testimonial-grid,
  .addon-list {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    border-radius: 0;
    margin-inline: -18px;
    border-left: 0;
    border-right: 0;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table {
    overflow: visible;
  }

  .pricing-table tr {
    padding: 14px 18px;
    border-top: 1px solid var(--line);
  }

  .pricing-table tr:first-child {
    border-top: 0;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 2px 0;
    border-top: 0;
  }

  .pricing-table td:nth-child(2)::before {
    content: "Range: ";
    color: var(--ink);
    font-weight: 800;
  }

  .pricing-table td:nth-child(3)::before {
    content: "Start at: ";
    color: var(--ink);
    font-weight: 800;
  }

  .pricing-table strong {
    font-size: 1.25rem;
  }

  .hero-media figcaption {
    width: 94%;
  }
}
