:root {
  --bg: #171311;
  --bg-soft: #211b18;
  --card: rgba(255, 248, 241, 0.06);
  --card-strong: rgba(255, 248, 241, 0.09);
  --text: #f3ece6;
  --muted: #c7b7a9;
  --line: rgba(255, 248, 241, 0.12);
  --gold: #c79257;
  --gold-soft: #e5c59e;
  --accent: #8e4e2c;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 32px));
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(199, 146, 87, 0.12), transparent 25%),
    radial-gradient(circle at bottom left, rgba(142, 78, 44, 0.18), transparent 22%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}

.container { width: var(--container); margin: 0 auto; }
.section { padding: 110px 0; }
.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
}
.centered { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }
.section-head { margin-bottom: 48px; }
.section-head h2,
.section-intro h2,
.contact-grid h2,
.hero h1,
.litters-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}
.section-head h2,
.section-intro h2,
.contact-grid h2 { font-size: clamp(2.4rem, 5vw, 4.3rem); }
.section-head p { color: var(--muted); max-width: 70ch; margin: 16px auto 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(23, 19, 17, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.brand strong {
  display: block;
  font-size: 1.02rem;
}
.brand small {
  display: block;
  color: var(--muted);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--text); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: min(92vh, 980px);
  display: grid;
  align-items: end;
  overflow: clip;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(1.04) contrast(1.02);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 11, 10, 0.86) 0%, rgba(13, 11, 10, 0.56) 45%, rgba(13,11,10,0.24) 100%),
    linear-gradient(180deg, rgba(13,11,10,0.08) 0%, rgba(13,11,10,0.18) 38%, rgba(13,11,10,0.86) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 88px;
  max-width: 720px;
}
.hero h1 { font-size: clamp(3rem, 7vw, 6.3rem); max-width: 10ch; }
.hero-text {
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: #efe7df;
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.94rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b67942);
  color: #1b130d;
}
.btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.text-link {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.stats-strip { padding: 22px 0 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stats-grid article,
.value-card,
.dog-card,
.breed-card,
.litters-card,
.contact-cards article,
.contact-form,
.gallery-filter,
.gallery-item,
.site-footer {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stats-grid article {
  padding: 24px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.stats-grid strong {
  display: block;
  font-size: 1.6rem;
  color: var(--gold-soft);
}
.stats-grid span { color: var(--muted); }

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 56px;
}
.sticky-block { align-self: start; position: sticky; top: 112px; }
.flow-content p { margin-top: 0; color: var(--muted); font-size: 1.04rem; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.value-card {
  padding: 26px;
  border-radius: var(--radius-sm);
}
.value-card h3 { margin-top: 0; margin-bottom: 8px; }
.value-card p { margin-bottom: 0; color: var(--muted); }

.dog-stack {
  display: grid;
  gap: 28px;
}
.dog-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  padding: 26px;
  border-radius: var(--radius);
}
.dog-card.reverse { grid-template-columns: 0.9fr 1.1fr; }
.dog-card.featured { background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04)); }
.dog-media { min-height: 380px; }
.simple-frame,
.logo-frame {
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
}
.logo-frame img {
  width: min(100%, 380px);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 22px;
}
.collage {
  position: relative;
  min-height: 430px;
}
.collage-main,
.collage-small {
  position: absolute;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
}
.collage-main {
  inset: 0 18% 0 0;
  height: 100%;
  width: auto;
  min-width: 62%;
}
.collage-small {
  right: 0;
  width: 36%;
  height: calc(50% - 10px);
}
.collage-small.top { top: 0; }
.collage-small.bottom { bottom: 0; }
.dog-heading h3 {
  margin: 10px 0 4px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-family: "Cormorant Garamond", Georgia, serif;
}
.subtitle {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-weight: 600;
}
.breed-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(199, 146, 87, 0.12);
  color: var(--gold-soft);
  border: 1px solid rgba(199, 146, 87, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dog-body p { color: var(--muted); }
.dog-facts {
  padding-left: 18px;
  color: var(--text);
}
.dog-facts strong { color: var(--gold-soft); }

.breed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.breed-card {
  border-radius: var(--radius);
  overflow: hidden;
}
.breed-image { aspect-ratio: 16 / 10; overflow: hidden; }
.breed-image img { width: 100%; height: 100%; object-fit: cover; }
.breed-body { padding: 26px; }
.breed-body h3 { margin-top: 0; font-size: 2rem; font-family: "Cormorant Garamond", Georgia, serif; }
.breed-body p { color: var(--muted); }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.spec-grid > div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.spec-grid span { display: block; color: var(--muted); font-size: 0.82rem; }
.spec-grid strong { display: block; margin-top: 4px; }
.feature-list { padding-left: 18px; margin-bottom: 0; }
.feature-list li { margin-bottom: 8px; }

.litters-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: start;
}
.litters-card {
  padding: 32px;
  border-radius: var(--radius);
}
.status-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--gold-soft);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.litters-card p,
.litters-card ul { color: var(--muted); }

.gallery-filter {
  display: inline-flex;
  padding: 8px;
  border-radius: 999px;
  gap: 8px;
  margin: 0 auto 28px;
}
.gallery-filter-wrap { text-align: center; }
.filter-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}
.filter-btn.is-active {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
}
.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item { grid-column: span 3; grid-row: span 2; }
.gallery-item.wide { grid-column: span 6; }
.gallery-item.tall { grid-row: span 3; }
.gallery-item.is-hidden { display: none; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.contact-grid p { color: var(--muted); }
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-cards article {
  padding: 20px;
  border-radius: 18px;
}
.contact-cards span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}
.contact-form {
  padding: 26px;
  border-radius: var(--radius);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
label { display: grid; gap: 8px; margin-bottom: 14px; }
label span { font-weight: 600; }
input, select, textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 14px 16px;
}
input::placeholder, textarea::placeholder { color: #c7b7a9aa; }
.error { min-height: 1em; color: #ff9f93; }
.form-status { margin-bottom: 0; color: var(--gold-soft); }

.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 24px;
  padding: 30px 0;
}
.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-brand img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 20px;
}
.site-footer h3 { margin-top: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer p,
.site-footer a { color: var(--muted); }
.footer-bottom {
  padding: 0 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lightbox {
  border: 0;
  padding: 18px;
  border-radius: 24px;
  width: min(92vw, 1100px);
  background: rgba(18, 15, 13, 0.96);
  color: var(--text);
}
.lightbox::backdrop { background: rgba(0,0,0,0.8); }
.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 16px;
}
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(229, 197, 158, 0.45);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .split-grid,
  .contact-grid,
  .litters-wrap,
  .breed-grid,
  .dog-card,
  .dog-card.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-block { position: static; }
  .value-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collage { min-height: 380px; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-item { grid-column: span 3; }
  .gallery-item.wide { grid-column: span 6; }
}

@media (max-width: 760px) {
  .section { padding: 84px 0; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(23, 19, 17, 0.97);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: inline-block; }
  .hero-content { padding-top: 110px; }
  .hero h1 { max-width: 11ch; }
  .field-grid,
  .value-grid,
  .stats-grid,
  .spec-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .brand span small { display: none; }
}


.map-card {
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197, 139, 78, 0.18);
  border-radius: 20px;
  padding: 1rem;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
  display: block;
}

.map-link {
  margin-top: 1rem;
}

.contact-cards a,
.footer-brand a {
  color: inherit;
  text-decoration: none;
}

.contact-cards a:hover,
.footer-brand a:hover {
  text-decoration: underline;
}
