:root {
  color-scheme: light;
  --ink: #263238;
  --muted: #68737d;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #e2ded6;
  --mint: #69b7a8;
  --coral: #e46f5d;
  --plum: #7868a6;
  --sun: #f7c85f;
  --shadow: 0 24px 70px rgba(38, 50, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
video {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 16px clamp(18px, 5vw, 76px);
  border-bottom: 1px solid rgba(226, 222, 214, 0.86);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 900;
}

.brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, #ffffff 0 18%, transparent 19%),
    linear-gradient(135deg, var(--mint), var(--plum));
  box-shadow: 0 0 0 4px rgba(105, 183, 168, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a:hover {
  color: var(--coral);
}

.nav a.active {
  color: var(--coral);
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
  padding: clamp(42px, 8vw, 92px) clamp(18px, 5vw, 76px) clamp(36px, 7vw, 78px);
}

.hero-copy {
  max-width: 680px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.quick-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #41515a;
  font-weight: 900;
}

.gallery-showcase {
  display: grid;
  gap: 14px;
}

.slideshow {
  position: relative;
  min-height: min(64vw, 650px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.slideshow img {
  width: 100%;
  height: 100%;
  min-height: min(64vw, 650px);
  display: block;
  object-fit: cover;
  transition: opacity 360ms ease;
}

.slideshow img.is-fading {
  opacity: 0.18;
}

.slide-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(38, 50, 56, 0.72);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.slide-caption span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.slide-caption strong {
  text-align: right;
}

.photo-thumbs {
  display: grid;
  grid-template-columns: repeat(7, minmax(58px, 1fr));
  gap: 8px;
}

.photo-thumb {
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
}

.photo-thumb:hover,
.photo-thumb.active {
  border-color: var(--coral);
}

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

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 76px);
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #ffffff;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.profile-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.profile-grid h3 {
  margin: 0;
  color: #293942;
  font-size: 1.14rem;
}

.profile-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.videos {
  background: #eef8f5;
}

.section-heading {
  max-width: 780px;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 22px;
  align-items: start;
  margin-top: 32px;
}

.video-player {
  border: 1px solid rgba(105, 183, 168, 0.32);
  border-radius: 8px;
  background: #101718;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-player video {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  background: #101718;
  object-fit: contain;
}

.video-list {
  display: grid;
  gap: 14px;
}

.video-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(105, 183, 168, 0.3);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.video-card:hover,
.video-card.active {
  border-color: var(--coral);
  box-shadow: 0 12px 30px rgba(228, 111, 93, 0.16);
}

.video-card img {
  width: 88px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.footer {
  padding: 24px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.breed-hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
  padding: clamp(42px, 8vw, 92px) clamp(18px, 5vw, 76px) clamp(36px, 7vw, 78px);
}

.breed-copy {
  max-width: 720px;
}

.breed-hero img {
  width: 100%;
  min-height: min(58vw, 620px);
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.breed-section {
  background: #ffffff;
}

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

.timeline article,
.trait-grid article,
.care-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.timeline article {
  min-height: 220px;
  padding: 24px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(105, 183, 168, 0.18);
  color: #2f665e;
  font-weight: 900;
}

.timeline p,
.trait-grid p,
.care-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.traits-section {
  background: #eef8f5;
}

.trait-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.trait-grid article {
  min-height: 210px;
  padding: 24px;
}

.trait-grid h3 {
  margin: 0;
  font-size: 1.12rem;
}

.care-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  background: #ffffff;
}

.care-list {
  display: grid;
  gap: 14px;
}

.care-list article {
  padding: 22px;
  background: var(--paper);
}

.care-list strong {
  display: block;
  font-size: 1.08rem;
}

@media (max-width: 960px) {
  .hero,
  .breed-hero,
  .profile,
  .video-layout,
  .care-section {
    grid-template-columns: 1fr;
  }

  .hero,
  .breed-hero {
    min-height: auto;
  }

  .profile-grid,
  .timeline,
  .trait-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .slide-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .slide-caption strong {
    text-align: left;
  }

  .video-card {
    grid-template-columns: 72px 1fr;
  }

  .video-card img {
    width: 72px;
  }

  .photo-thumbs {
    grid-template-columns: repeat(4, minmax(58px, 1fr));
  }
}
