:root {
  --black: #050505;
  --ink: #121318;
  --muted: #5f6673;
  --line: #dfe5eb;
  --paper: #ffffff;
  --soft: #f3f7fa;
  --blue: #0b9cd2;
  --blue-dark: #06658a;
  --green: #00ce1b;
  --green-dark: #07931a;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(0, 206, 27, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 99;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--blue-dark);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-shell {
  width: min(100% - 32px, var(--container));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--paper);
}

.nav-action,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-action {
  padding: 0 17px;
  color: var(--black);
  background: var(--green);
}

.nav-action:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: #16e730;
}

.nav-action svg,
.button svg,
.contact-list svg,
.service-card svg,
.check-list svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.3;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

main section[id],
.site-header[id] {
  scroll-margin-top: 84px;
}

.hero {
  position: relative;
  min-height: calc(78svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--black);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/img/hero-pets.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.32) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 74px 0 46px;
}

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

.eyebrow.dark {
  color: var(--blue-dark);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

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

.button {
  padding: 0 20px;
}

.button-primary {
  color: var(--black);
  background: var(--green);
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}

.button-outline {
  color: var(--blue-dark);
  background: var(--paper);
  border-color: rgba(6, 101, 138, 0.28);
}

.button-outline:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}

.hero-proof {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
}

.hero-proof div {
  min-height: 92px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.48);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.05rem;
}

.hero-proof span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.intro-section,
.services-section,
.coverage-section {
  padding: 88px 0;
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.copy-block h2,
.section-heading h2,
.contact-pane h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.copy-block p,
.section-heading p,
.contact-pane p {
  color: var(--muted);
  font-size: 1.03rem;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.image-panel,
.portrait-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}

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

.dark-section {
  padding: 96px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at top left, rgba(11, 156, 210, 0.38), transparent 30%),
    linear-gradient(138deg, #050505 0%, #050505 58%, #08384d 100%);
}

.portrait-panel {
  max-width: 440px;
  justify-self: center;
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
}

.on-dark h2,
.on-dark p {
  color: var(--paper);
}

.on-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.check-list svg {
  color: var(--green);
}

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

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

.service-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 206, 27, 0.72);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

.service-card svg {
  width: 54px;
  height: 54px;
  color: var(--blue);
}

.service-card h3 {
  margin: 24px 0 12px;
  font-size: 1.6rem;
  letter-spacing: 0;
}

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

.brands-section {
  padding: 90px 0;
  color: var(--paper);
  background: var(--black);
}

.brands-section .section-heading h2 {
  color: var(--paper);
}

.brands-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.brand-tile {
  min-height: 215px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #26282b 0%, #17191c 100%);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.brand-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 206, 27, 0.72);
  background: linear-gradient(180deg, #2c2f32 0%, #191c1f 100%);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
}

.brand-logo-area {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 12px;
}

.brand-tile img {
  max-width: 150px;
  max-height: 82px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.brand-copy {
  min-height: 72px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-copy h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand-copy span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.83rem;
  line-height: 1.35;
}

.coverage-section {
  background: var(--soft);
}

.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.route-list span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--blue-dark);
  border: 1px solid rgba(6, 101, 138, 0.2);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 800;
}

.route-card {
  min-height: 330px;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 36px;
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(140deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.76)),
    url("assets/img/hero-pets.jpg") center / cover;
  box-shadow: var(--shadow);
}

.route-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
}

.route-line span {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 3px solid var(--green);
  border-radius: 50%;
  background: var(--black);
}

.route-card strong {
  display: block;
  font-size: 1.7rem;
}

.route-card p {
  max-width: 460px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.contact-section {
  padding: 76px 0;
  background: var(--paper);
}

.contact-wrap {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.contact-pane {
  padding: 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-list a:hover {
  transform: translateX(3px);
  border-color: rgba(11, 156, 210, 0.52);
  background: var(--paper);
}

.contact-list svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--paper);
  border-radius: 6px;
  background: var(--blue);
}

.contact-list strong {
  display: block;
  color: var(--ink);
}

.contact-list span {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-visual {
  position: relative;
  height: 600px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.78) 100%);
}

.contact-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 20px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.contact-visual strong,
.contact-visual span {
  display: block;
}

.contact-visual strong {
  font-size: 1.18rem;
}

.contact-visual span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-inner img {
  width: 132px;
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .nav-action,
  .button,
  .service-card,
  .brand-tile,
  .contact-list a {
    transition: none;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

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

  .nav-action {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: #101113;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    min-height: 48px;
  }

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

  .split-reverse .portrait-panel {
    order: 2;
  }

  .split-reverse .copy-block {
    order: 1;
  }

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

  .service-card {
    min-height: auto;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 720px) {
  .container,
  .hero-inner,
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand img {
    width: 136px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 38px 0 32px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.5rem);
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-proof {
    display: none;
  }

  .intro-section,
  .services-section,
  .coverage-section,
  .brands-section,
  .dark-section,
  .contact-section {
    padding: 62px 0;
  }

  .split,
  .split-reverse {
    gap: 32px;
  }

  .copy-block h2,
  .section-heading h2,
  .contact-pane h2 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .service-card,
  .route-card {
    padding: 26px;
  }

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

  .brand-tile {
    min-height: 128px;
    padding: 18px;
  }

  .contact-pane {
    width: min(100% - 28px, 760px);
    margin: 0 auto;
  }

  .contact-visual {
    width: min(100% - 28px, 760px);
    height: 360px;
    margin: 0 auto;
  }

  .contact-visual img {
    height: 100%;
  }

  .contact-actions .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button-secondary {
    display: none;
  }

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

  .route-list span {
    width: 100%;
    justify-content: center;
  }
}
