﻿:root {
  --bg: #d8d7dd;
  --frame: #ecebf0;
  --panel: #f8f8fb;
  --surface: #ffffff;
  --ink: #182235;
  --muted: #5e6675;
  --line: #dfe3ea;
  --primary: #7a3fb2;
  --primary-dark: #5d2d8d;
  --deep: #0f1725;
  --accent: #14a4a0;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 14px 34px rgba(15, 23, 37, 0.08);
  --shadow-card: 0 12px 24px rgba(11, 22, 35, 0.08);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  background: radial-gradient(circle at 20% 0%, #ebe9f2 0%, var(--bg) 52%, #d2d2d8 100%);
  color: var(--ink);
  line-height: 1.5;
}

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

.hero-visual a,
.trust-image a,
.dog-card-media a,
.testimonial > a,
.blog-card figure a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.page-shell {
  width: min(1480px, calc(100% - 28px));
  margin: 18px auto;
  padding: 18px 18px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f0eff4 0%, #e7e6ec 100%);
  border: 1px solid #d5d5dc;
  overflow-x: clip;
}

.frame-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #6c7280;
  font-size: 12px;
  padding: 6px 6px 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.frame-top span:nth-child(2) {
  font-weight: 700;
  color: #4f5564;
}

.frame-top span:last-child {
  justify-self: end;
}

.content-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.main-column {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e6e8ef;
}

.hero-shell {
  background: var(--surface);
  padding: clamp(12px, 2.5vw, 26px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

.menu a {
  color: #444f62;
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: #2f394a;
  margin: 4px auto;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: stretch;
  padding: clamp(12px, 2vw, 20px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(122, 63, 178, 0.08) 0%, rgba(122, 63, 178, 0) 55%),
    radial-gradient(circle at 10% 90%, rgba(20, 164, 160, 0.08) 0%, rgba(20, 164, 160, 0) 58%),
    #f8f9fc;
  border: 1px solid #ebeef4;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
  color: #667089;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.015em;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  max-width: 15ch;
  overflow-wrap: anywhere;
}

.hero-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 56ch;
  overflow-wrap: anywhere;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #8d4fd0 0%, var(--primary) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(122, 63, 178, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #9a5ce0 0%, var(--primary-dark) 100%);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: #cfd6e2;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #f2f6ff;
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  padding: 0;
  min-height: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: contain;
}

.stat-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.stat-grid article {
  padding: 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-grid article:last-child {
  border-right: 0;
}

.stat-grid h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  color: #0f2342;
}

.stat-grid p {
  margin: 4px 0 0;
  color: #68738b;
  font-size: 12px;
}

.feature-tiles {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 0;
  background: transparent;
  display: block;
  aspect-ratio: 5 / 4;
  padding: 34px 0 0;
}

.tile-large {
  aspect-ratio: 5 / 4;
}

.feature-tiles .tile:nth-of-type(2) {
  aspect-ratio: 5 / 4;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.feature-tiles .tile:not(.tile-large) {
  aspect-ratio: 5 / 4;
  min-height: 0;
  display: block;
  padding: 34px 0 0;
}

.feature-tiles .tile:not(.tile-large) img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d8dce7;
  color: #28344a;
  font-size: 12px;
  font-weight: 700;
}

.ticker {
  overflow: hidden;
  background: #0f2b66;
  color: #e9efff;
  border-top: 1px solid #0a1d49;
  border-bottom: 1px solid #0a1d49;
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  white-space: nowrap;
  padding: 11px 8px;
  animation: tickerScroll 28s linear infinite;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.ticker-track span::after {
  content: "\2726";
  margin-left: 34px;
  color: #7dd2ff;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.section-head h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

.section-head p {
  margin: 12px auto 0;
  color: var(--muted);
}

.section-head.compact {
  text-align: left;
  margin: 0;
}

.section-head.compact p {
  margin-left: 0;
}

.dogs-section,
.trust-split,
.service-grid,
.specialties,
.why-us,
.testimonial-section,
.blog-section,
.cta-band,
.faq-section {
  padding: clamp(26px, 4vw, 46px) clamp(14px, 2.8vw, 28px);
  border-bottom: 1px solid #edf0f6;
}

.dog-card-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.dog-card {
  border-radius: var(--radius-md);
  border: 1px solid #e3e7f0;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dog-card-media {
  background: transparent;
  display: block;
  padding: 0;
  height: clamp(220px, 23vw, 330px);
  border-bottom: 0;
  overflow: hidden;
}

.dog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dog-card-copy {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.dog-card-copy h3 {
  font-size: 20px;
  line-height: 1.18;
  min-height: 0;
}

.dog-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #4e5a70;
  margin-bottom: 0;
  margin-top: auto;
}

.mini-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #244899;
}

.trust-split {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  background: linear-gradient(180deg, #fbfbfd 0%, #f4f6fa 100%);
}

.trust-copy h2 {
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1.06;
}

.trust-copy p {
  color: var(--muted);
}

.trust-copy ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #3f4d64;
}

.trust-copy li+li {
  margin-top: 6px;
}

.trust-image {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 0;
  background: transparent;
  display: block;
  padding: 0;
}

.trust-image img {
  width: 100%;
  height: auto;
  max-height: none;
}

.service-cards,
.specialty-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.specialty-card {
  background: #ffffff;
  border: 1px solid #e1e7f0;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.specialty-card > a {
  display: block;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
}

.service-card h3,
.specialty-card h3 {
  font-size: 21px;
}

.service-card p,
.specialty-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.specialty-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 10px;
  background: transparent;
  border: 0;
  padding: 0;
}

.specialty-card h3 {
  min-height: 52px;
}

.specialty-card p {
  min-height: 84px;
}

.specialty-card .mini-link {
  margin-top: auto;
}

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

.why-grid article {
  border-radius: var(--radius-md);
  border: 1px solid #e1e6f0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
  padding: 18px;
}

.why-grid h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
}

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

.testimonial {
  display: grid;
  grid-template-columns: minmax(0, 112px) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  border-radius: var(--radius-md);
  border: 1px solid #e1e7f0;
  background: #fff;
  overflow: hidden;
}

.testimonial img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.testimonial-copy {
  padding: 12px 12px 12px 0;
}

.testimonial-copy h3 {
  font-size: 17px;
}

.testimonial-copy p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.inline-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.blog-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  border-radius: var(--radius-md);
  border: 1px solid #e3e8f1;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card figure {
  margin: 0;
  border-bottom: 0;
  background: transparent;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.blog-card .copy {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card h3 {
  font-size: 20px;
  min-height: 52px;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  min-height: 68px;
}

.blog-card .author {
  font-size: 13px;
  color: #3c4a61;
  font-weight: 700;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e5e9f1;
  border-bottom: 1px solid #e5e9f1;
  background:
    radial-gradient(circle at 85% 20%, rgba(20, 164, 160, 0.18) 0%, rgba(20, 164, 160, 0) 54%),
    radial-gradient(circle at 0% 100%, rgba(122, 63, 178, 0.14) 0%, rgba(122, 63, 178, 0) 50%),
    #f6f9fd;
}

.cta-band h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.cta-band p {
  color: var(--muted);
  margin-top: 10px;
}

.faq-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #e0e5ef;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px;
  font-weight: 800;
  color: #223046;
  position: relative;
  padding-right: 40px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 24px;
  font-weight: 500;
  color: #5a6782;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.side-column {
  position: sticky;
  top: 12px;
}

.side-card {
  border-radius: 20px;
  background: linear-gradient(180deg, #101f34 0%, #15273f 100%);
  color: #edf4ff;
  border: 1px solid #2a3b5d;
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.side-card h2 {
  font-size: 35px;
  line-height: 1.04;
  margin-top: 10px;
}

.side-card p {
  margin-top: 10px;
  color: #bdd0f2;
}

.side-card .hero-actions {
  margin-top: 14px;
}

.side-image {
  margin: 14px 0 10px;
  border-radius: 14px;
  border: 1px solid #2f456e;
  background: rgba(255, 255, 255, 0.05);
  min-height: 240px;
  padding: 10px;
}

.side-image img {
  width: 100%;
  height: auto;
  max-height: 360px;
}

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

.mini-stats article {
  border: 1px solid #2c4268;
  border-radius: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.mini-stats strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.mini-stats span {
  font-size: 12px;
  color: #bdd0f2;
}

.site-footer {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d8deea;
  background: linear-gradient(180deg, #0f2035 0%, #0b1a2c 100%);
  color: #e7effd;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: clamp(22px, 3vw, 30px);
}

.footer-top h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-top p {
  color: #b8c9e4;
}

.footer-top ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.footer-top a {
  color: #d7e3f9;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-top a:hover,
.footer-top a:focus-visible {
  color: #88d2ff;
}

.cities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-bottom {
  border-top: 1px solid #1f3555;
  padding: 12px 20px;
  font-size: 13px;
  color: #a5bddf;
}

.section-reveal {
  opacity: 1;
  transform: none;
}

.js .section-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1260px) {
  .content-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .side-column {
    position: static;
  }

  .side-card {
    background: linear-gradient(180deg, #f4f7ff 0%, #edf2ff 100%);
    color: #182844;
    border-color: #d4dff3;
  }

  .side-card p,
  .mini-stats span {
    color: #5a6d8d;
  }

  .side-image,
  .mini-stats article {
    border-color: #d6e0f1;
    background: #fff;
  }
}

@media (max-width: 1040px) {
  .menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    margin: 0 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid #d7ddea;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.23s ease, transform 0.23s ease;
    z-index: 50;
  }

  .menu a {
    padding: 12px 14px;
    border-bottom: 1px solid #e7ebf3;
  }

  .menu a:last-child {
    border-bottom: 0;
  }

  .site-nav.menu-open .menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: relative;
  }

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

  .hero-visual img {
    height: auto;
  }

  .dog-card-grid,
  .service-cards,
  .specialty-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dog-card-copy p,
  .specialty-card p,
  .blog-card p {
    min-height: 0;
  }

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

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: calc(100% - 14px);
    margin: 7px auto;
    padding: 10px;
    border-radius: 14px;
  }

  .frame-top {
    grid-template-columns: 1fr;
    gap: 4px;
    justify-items: center;
    text-align: center;
  }

  .frame-top span:last-child {
    justify-self: center;
  }

  .hero-copy h1,
  .section-head h2,
  .trust-copy h2,
  .cta-band h2,
  .side-card h2 {
    max-width: none;
    font-size: clamp(26px, 9vw, 42px);
  }

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

  .stat-grid article:nth-child(2n) {
    border-right: 0;
  }

  .feature-tiles {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .dog-card-grid,
  .service-cards,
  .specialty-grid,
  .testimonial-grid,
  .blog-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .dog-card-media {
    height: clamp(240px, 72vw, 340px);
  }

  .specialty-card {
    padding: 14px;
    gap: 10px;
  }

  .specialty-card h3,
  .specialty-card p {
    min-height: 0;
  }

  .dog-card-media,
  .specialty-card img,
  .blog-card figure {
    aspect-ratio: auto;
  }

  .inline-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .testimonial img {
    min-height: 180px;
    object-fit: contain;
    background: #f3f5fb;
  }

  .testimonial-copy {
    padding: 0 12px 12px;
  }

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

@media (max-width: 420px) {
  body {
    font-size: 15px;
  }

  .hero-shell,
  .dogs-section,
  .trust-split,
  .service-grid,
  .specialties,
  .why-us,
  .testimonial-section,
  .blog-section,
  .cta-band,
  .faq-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-grid {
    padding: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(22px, 10vw, 34px);
    line-height: 1.06;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .site-nav {
    padding: 7px;
  }

  .brand img {
    width: 152px;
    height: auto;
  }

  .hero-visual {
    padding: 8px;
  }

  .hero-visual img {
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ticker-track,
  .section-reveal,
  .btn,
  .menu,
  .menu-toggle span {
    animation: none !important;
    transition: none !important;
  }
}
