:root {
  --ink: #17201c;
  --muted: #56645d;
  --forest: #214b3c;
  --leaf: #3f8b65;
  --sky: #d8edf3;
  --sun: #f4c95d;
  --coral: #df735f;
  --cream: #fffaf0;
  --paper: #ffffff;
  --line: #dfe8df;
  --shadow: 0 22px 60px rgba(23, 32, 28, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid rgba(33, 75, 60, 0.12);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
  font-size: 1.34rem;
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--sun);
  box-shadow: 0 8px 18px rgba(244, 201, 93, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 750;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--forest);
  background: rgba(63, 139, 101, 0.1);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  padding: 0;
  border: 1px solid rgba(33, 75, 60, 0.18);
  border-radius: var(--radius);
  color: var(--forest);
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(33, 75, 60, 0.22);
}

.btn-primary:hover {
  background: #17382d;
}

.btn-secondary {
  color: var(--forest);
  background: white;
  border-color: rgba(33, 75, 60, 0.18);
}

.btn-soft {
  color: var(--forest);
  background: var(--sky);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(16, 30, 34, 0) 0%, rgba(23, 42, 48, 0) 44%, rgba(23, 42, 48, 0.9) 57%, rgba(23, 42, 48, 1) 70%),
    linear-gradient(90deg, rgba(15, 22, 23, 0), rgba(27, 44, 51, 0.12) 42%, rgba(27, 44, 51, 0.26)),
    linear-gradient(180deg, rgba(22, 32, 34, 0.02), rgba(16, 23, 24, 0.56)),
    url("great-dane-hero.jpg");
  background-position: center, center, center, calc(5% - 57px) 68%;
  background-size: cover, cover, cover, auto 118%;
  background-repeat: no-repeat;
  background-color: #172a30;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 132px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), var(--cream));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 170px 0 110px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.hero h1 {
  max-width: 700px;
}

.hero-copy {
  max-width: 570px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions {
  width: min(100%, 650px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: -48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-item {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--forest);
  font-size: 1.35rem;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.section {
  padding: 88px 0;
}

.answer-section {
  padding-bottom: 0;
}

.section-alt {
  background: white;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.review-card,
.answer-card,
.proof-card,
.faq-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(23, 32, 28, 0.07);
}

.service-card {
  min-height: 100%;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--forest);
  background: var(--sky);
  border-radius: var(--radius);
}

.service-card:nth-child(2) .service-icon {
  background: #ffe7cf;
}

.service-card:nth-child(3) .service-icon {
  background: #e0f2db;
}

.service-card h3 {
  color: var(--forest);
  font-size: 1.35rem;
}

.card-title-link {
  color: inherit;
  text-decoration-color: rgba(63, 139, 101, 0.38);
  text-underline-offset: 5px;
}

.card-title-link:hover {
  color: var(--leaf);
  text-decoration-color: currentColor;
}

.service-card p,
.review-card p,
.answer-card p,
.proof-card p,
.faq-card p,
.text-block p,
.contact-card p {
  color: var(--muted);
}

.answer-panel {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.answer-panel .section-head {
  margin-bottom: 22px;
}

.answer-lede {
  max-width: 880px;
  font-size: 1.18rem;
  font-weight: 700;
}

.answer-card h3,
.proof-card h3 {
  color: var(--forest);
  font-size: 1.25rem;
}

.page-updated {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.page-updated-light {
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--forest);
  font-weight: 850;
  text-underline-offset: 4px;
}

.tick-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--muted);
  font-weight: 650;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--leaf);
  border-bottom: 3px solid var(--leaf);
  transform: rotate(-45deg);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 52px;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(33, 75, 60, 0.05), rgba(33, 75, 60, 0.2)),
    url("https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&w=1300&q=82") center/cover;
  box-shadow: var(--shadow);
}

.photo-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
}

.photo-badge strong {
  color: var(--forest);
  font-size: 1.1rem;
}

.text-block h2 {
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.feature-band {
  background: var(--forest);
  color: white;
  padding: 70px 0;
}

.feature-band .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.feature-band h2 {
  color: var(--sun);
  font-size: clamp(2rem, 4vw, 3rem);
}

.feature-band p,
.feature-band li {
  color: rgba(255, 255, 255, 0.82);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 22px 22px 22px 78px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sun);
  border-radius: 50%;
  font-weight: 900;
}

.step h3 {
  font-size: 1.15rem;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.review-card {
  background: #fffdf7;
}

.review-card p {
  margin-top: 0;
  font-size: 1.03rem;
}

.review-card strong {
  color: var(--forest);
}

.cta {
  background:
    linear-gradient(90deg, rgba(33, 75, 60, 0.95), rgba(63, 139, 101, 0.86)),
    url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?auto=format&fit=crop&w=1600&q=82") center/cover;
  color: white;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(33, 75, 60, 0.92), rgba(33, 75, 60, 0.58)),
    url("https://images.unsplash.com/photo-1601758125946-6ec2ef64daf8?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: white;
  padding: 130px 0 90px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.gallery-hero {
  background:
    linear-gradient(90deg, rgba(33, 75, 60, 0.92), rgba(33, 75, 60, 0.38)),
    url("gallery/web/dogs-paddling-water-woodland-walk.jpg") center 45%/cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  scroll-margin-top: 96px;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(23, 32, 28, 0.07);
}

.gallery-card:target {
  outline: 4px solid var(--sun);
  outline-offset: 4px;
}

.gallery-card-wide {
  grid-column: span 2;
  min-height: 620px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.gallery-card:nth-child(2) img {
  object-position: 48% 72%;
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 5px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
}

.gallery-card figcaption strong {
  color: var(--forest);
  font-size: 1.08rem;
}

.gallery-card figcaption span {
  color: var(--muted);
  font-weight: 650;
}

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

.cert-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(23, 32, 28, 0.07);
}

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

.cert-card img {
  width: 100%;
  height: auto;
  background: #eef3ef;
  border-bottom: 1px solid var(--line);
}

.cert-card div {
  padding: 24px;
}

.cert-card h3 {
  color: var(--forest);
  font-size: 1.3rem;
}

.cert-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(23, 32, 28, 0.07);
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method span {
  color: var(--muted);
  font-weight: 750;
}

.contact-method a {
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cad8ce;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #13251e;
}

.footer-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.footer-bottom {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 14px 0;
    align-items: center;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav-links,
  .nav-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .nav.is-open .nav-links,
  .nav.is-open .nav-actions {
    display: flex;
  }

  .nav.is-open .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 12px;
  }

  .nav.is-open .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 11px 12px;
  }

  .nav.is-open .nav-actions {
    padding-top: 10px;
  }

  .nav.is-open .nav-actions .btn {
    width: 100%;
  }

  .hero {
    min-height: 660px;
    background:
      linear-gradient(180deg, rgba(20, 30, 32, 0.1), rgba(14, 21, 22, 0.68)),
      url("great-dane-hero.jpg");
    background-position: center, 44% 42%;
    background-size: cover, auto 108%;
  }

  .trust-row,
  .grid-3,
  .gallery-grid,
  .cert-grid,
  .split,
  .feature-band .wrap,
  .reviews,
  .cta-inner,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .gallery-card,
  .gallery-card-wide {
    grid-column: auto;
    min-height: 420px;
  }

  .cert-card-large {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 22px, 1160px);
  }

  .hero-inner {
    width: min(100% - 22px, 1160px);
    padding-bottom: 92px;
    align-items: flex-start;
  }

  .hero-actions .btn,
  .cta .btn {
    width: 100%;
  }

  .wrap,
  .trust-row,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 22px, 1160px);
  }

  .section {
    padding: 66px 0;
  }

  .photo-panel {
    min-height: 380px;
  }
}
