:root {
  --bg: #fff8f0;
  --surface: #ffffff;
  --text: #2a2340;
  --muted: #645b7a;
  --primary: #ff6b9d;
  --primary-dark: #e14f82;
  --secondary: #5ac8fa;
  --secondary-dark: #2aa9e2;
  --accent: #ffd93d;
  --accent-2: #7de27d;
  --accent-3: #ff9966;
  --border: #ffd6ea;
  --shadow: 0 14px 32px rgba(255, 107, 157, 0.18);
  --radius: 26px;
  --max-width: 1220px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Fredoka", "Comic Sans MS", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 217, 61, 0.28), transparent 26%),
    radial-gradient(circle at top right, rgba(90, 200, 250, 0.18), transparent 22%),
    linear-gradient(180deg, var(--bg), #fffdf8);
  color: var(--text);
  line-height: 1.65;
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.98rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  font-weight: 800;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 3px dashed rgba(255, 107, 157, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #fff;
  border: 4px solid var(--accent);
  border-radius: 22px;
  padding: 0.35rem;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.brand-text h1 {
  font-size: 1.25rem;
  line-height: 1.05;
  color: var(--primary-dark);
}

.brand-text p {
  font-size: 0.96rem;
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 800;
  color: var(--text);
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  transition: transform 0.28s ease;
  background: var(--accent);
  color: var(--primary-dark);
  transform: scale(0.98);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  border: 3px solid transparent;
  transition: 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px) rotate(-1deg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent-3));
  color: #fff !important;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #fff;
  color: var(--secondary-dark);
  border-color: var(--secondary);
  box-shadow: 0 10px 22px rgba(90, 200, 250, 0.15);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: #fff;
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.98);
}

.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, var(--primary), var(--accent-3));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 107, 157, 0.18);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(255, 217, 61, 0.22);
}

.hero-copy h2,
.page-hero h2 {
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 1.02;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.hero-copy p,
.page-hero p {
  font-size: 1.08rem;
  color: #534b68;
  max-width: 64ch;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-stats,
.cards-4,
.cards-3,
.cards-2,
.gallery-grid,
.breeds-grid {
  display: grid;
  gap: 1rem;
}

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

.cards-4,
.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.card,
.hero-card,
.photo-card,
.photo-card-big,
.contact-link,
.availability-item {
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.4rem;
}

.card h3,
.card h4,
.stat strong {
  color: var(--primary-dark);
}

.card p,
.note,
.availability-item span,
.contact-link small {
  color: #5d5770;
}

.hero-card {
  padding: 1.4rem;
  background: linear-gradient(180deg, #fff, #fff5fb);
}

.hero-logo {
  width: min(100%, 260px);
  margin: 0 auto 1rem;
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 24px;
  padding: 0.8rem;
}

.hero-card h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.hero-card li {
  background: #fff;
  border: 2px dashed rgba(255, 107, 157, 0.3);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font-weight: 800;
}

.stat {
  padding: 1.2rem;
}

.stat strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

section {
  padding: 2.8rem 0;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-title span {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 0.55rem;
}

.section-title h2,
.section-title h3 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--muted);
  max-width: 70ch;
}

.highlight {
  background: linear-gradient(135deg, #fff9d9, #fff0fa 55%, #eefbff);
  border: 3px dashed rgba(255, 107, 157, 0.28);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.photo-card,
.photo-card-big {
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    filter 0.22s ease;
  cursor: default;
  will-change: transform;
}

.photo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.photo-card-big img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.photo-card-big {
  height: auto;
}

.photo-content {
  padding: 1rem 1.1rem 1.2rem;
}

.photo-content h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.gallery-grid .photo-card img {
  height: 220px;
}

.photo-card:hover,
.photo-card-big:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 36px rgba(255, 107, 157, 0.24);
  border-color: var(--primary);
  filter: brightness(1.01);
}

.photo-card:hover .photo-content h4,
.photo-card-big:hover .photo-content h4 {
  color: var(--primary);
}

.photo-card:hover img,
.photo-card-big:hover img {
  transform: scale(1.04);
}

.page-hero {
  padding: 4rem 0 2rem;
}

.availability-list {
  display: grid;
  gap: 0.9rem;
}

.availability-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.availability-item strong {
  color: var(--primary-dark);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: visible;
}

.contact-link {
  display: block;
  position: relative;
  padding: 1rem 1.1rem;
  font-weight: 900;
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  cursor: pointer;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}

.contact-link small {
  display: block;
  margin-top: 0.3rem;
  font-weight: 600;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  filter: brightness(1.01);
}

.contact-link:active,
.contact-link.is-pressed {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.10);
}

.contact-link:focus-visible {
  outline: 2px solid #c89b63;
  outline-offset: 4px;
}

.legal-box {
  background: linear-gradient(180deg, #ffffff, #fff7db);
  border: 3px solid var(--accent);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.legal-box ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.legal-box li {
  padding-bottom: 0.75rem;
  border-bottom: 2px dashed rgba(255, 153, 102, 0.28);
}

.legal-box li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cta-banner {
  background: linear-gradient(135deg, var(--secondary), var(--accent-2));
  color: #fff;
  padding: 1.6rem;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(90, 200, 250, 0.22);
}

.cta-banner h3 {
  margin-bottom: 0.55rem;
  color: #fff;
}

footer {
  padding: 2.5rem 0 3rem;
  color: var(--muted);
}

.footer-box {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 3px dashed rgba(255, 107, 157, 0.24);
}

.card:hover {
  transition: transform 0.28s ease;
  transform: scale(1.05);
}

@media (max-width: 1050px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .cards-4,
  .cards-3,
  .cards-2,
  .gallery-grid,
  .breeds-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 1rem;
    background: #fff8f0;
    border: 3px solid #ffd6ea;
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(255, 107, 157, 0.18);
    z-index: 2000;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: row;
    align-items: center;
  }

  .cards-4,
  .cards-3,
  .cards-2,
  .gallery-grid,
  .breeds-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-text h1 {
    font-size: 1rem;
  }

  .brand-text p {
    font-size: 0.82rem;
  }

  .btn {
    width: 100%;
  }

  .availability-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-card img,
  .gallery-grid .photo-card img {
    height: 220px;
  }

  .photo-card-big img {
    height: auto;
  }
}