/* Free The Pooch — static migration (tokens from Wix theme) */
:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-muted: #60605e;
  --color-teal: #57bbbf;
  --color-teal-dark: #3a7c80;
  --color-line: #cccccc;
  --color-section-alt: #f5f5f5;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Nunito Sans", sans-serif;
  --site-width: 980px;
  --header-height: 72px;
  --focus-ring: 0 0 0 2px #fff, 0 0 0 4px #116dff;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-teal-dark);
  text-decoration: none;
}

a:hover {
  color: var(--color-teal);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 12px 20px;
  background: #fff;
  color: var(--color-teal-dark);
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  outline: none;
  box-shadow: var(--focus-ring);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}

.site-header__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  width: 75px;
  height: auto;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 8px;
}

.nav-main a {
  display: inline-block;
  padding: 8px 10px;
  font-size: 15px;
  color: var(--color-text);
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 6px 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-main {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 12px 20px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    gap: 0;
  }

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

  .nav-main a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--color-line);
  }
}

.container {
  max-width: var(--site-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--alt {
  background: var(--color-section-alt);
}

.section--dark {
  background: #000;
  color: #fff;
}

.section--dark a {
  color: var(--color-teal);
}

.h-accent {
  width: 40px;
  height: 5px;
  background: var(--color-text);
  margin-bottom: 24px;
}

.section--dark .h-accent {
  background: #fff;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
}

/* Hero */
.hero {
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(85vh, 920px);
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
 min-height: unset;
  }
}

.hero__slides-wrap {
  position: relative;
  background: #111;
  min-height: 280px;
}

@media (min-width: 901px) {
  .hero__slides-wrap {
    min-height: 400px;
  }
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: inherit;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide {
    transition: none;
  }
}

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

.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-carousel__btn:hover {
  background: #fff;
}

.hero-carousel__btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.hero-carousel__btn--prev {
  left: 16px;
}

.hero-carousel__btn--next {
  right: 16px;
}

.hero-carousel__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 4px;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  background: var(--color-bg);
}

.hero__brand {
  max-width: 286px;
  margin-bottom: 28px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  max-width: 22em;
  margin: 0 0 28px;
  line-height: 1.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 0;
  border: 4px solid #000;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn--outline-dark {
  background: transparent;
  color: #2f2e2e;
  border-color: #727272;
}

.btn--outline-dark:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn--primary {
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn--primary:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* About + two-column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.about__text p {
  margin: 0 0 1em;
}

.about__photo {
  margin-top: 8px;
}

/* Services grid */
.services-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

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

@media (max-width: 900px) {
  .service-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

.service-card {
  border: 7px solid #000;
  padding: 32px 24px;
  text-align: center;
  background: #fff;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card .meta {
  font-size: 16px;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.service-card .price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Contact block */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-details p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.7;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.social-row a img {
  width: 26px;
  height: 26px;
}

.map-embed {
  width: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(20%);
}

/* Forms */
.form-grid {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 0;
}

.form-grid input:focus-visible,
.form-grid textarea:focus-visible,
.form-grid select:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.form-hint {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: #000;
  color: #e8e8e8;
  padding: 64px 0 48px;
}

.site-footer blockquote {
  margin: 0 auto;
  max-width: 720px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  position: relative;
}

.site-footer blockquote::before {
  content: "\201C";
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.35em;
  opacity: 0.35;
}

.footer-brand {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

/* Interior pages */
.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--color-line);
}

.page-hero h1 {
  margin-bottom: 8px;
}

.page-content {
  padding: 40px 0 72px;
}

.page-content .prose > * + * {
  margin-top: 1em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--color-line);
  padding: 16px 0;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
 font-size: 17px;
}

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

.faq-list details[open] summary {
  color: var(--color-teal-dark);
  margin-bottom: 10px;
}

.blog-list article {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-line);
}

.blog-list h2 {
  margin-bottom: 8px;
}

.blog-list a {
  color: inherit;
}

.blog-list a:hover {
  color: var(--color-teal-dark);
}

.post-meta {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.prose h3 {
  margin-top: 1.5em;
}
