:root {
  --bg: #f5f0e6;
  --bg-soft: #fbf8f1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #2d241b;
  --muted: #6f6254;
  --line: rgba(112, 90, 56, 0.18);
  --gold: #b3945e;
  --gold-dark: #8f7040;
  --dark: #2d241d;
  --shadow: 0 18px 40px rgba(63, 44, 21, 0.12);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(179, 148, 94, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(166, 128, 68, 0.12), transparent 28%),
    linear-gradient(180deg, #f6f2eb 0%, #f1eadf 100%);
}

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

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

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

.section {
  padding: 5.5rem 0;
}

.section-accent {
  background: linear-gradient(180deg, rgba(186, 157, 108, 0.12), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-heading.light,
.section-heading.light p,
.section-heading.light h2 {
  color: #f9f3e7;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(250, 246, 239, 0.84);
  border-bottom: 1px solid var(--line);
}

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

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

.brand img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(179, 148, 94, 0.32);
  box-shadow: var(--shadow);
}

.brand strong {
  display: block;
  font-size: 1.1rem;
}

.brand span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 600;
}

.main-nav a {
  padding: 0.4rem 0.15rem;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.8rem 1.1rem !important;
  border-radius: 999px;
  background: var(--gold);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(179, 148, 94, 0.28);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
  border-radius: 999px;
}

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

.hero-video-section {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  /* Altura mínima segura para el texto + vídeo de fondo (evita cortes en móvil) */
  min-height: clamp(26rem, 78vh, 44rem);
  max-height: none;
  padding: clamp(2rem, 6vw, 3rem) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(179, 148, 94, 0.2), transparent 34%),
    linear-gradient(180deg, #2d241d 0%, #4b3a2b 100%);
}

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

.hero-video-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(26, 19, 12, 0.36), rgba(26, 19, 12, 0.72)),
    linear-gradient(90deg, rgba(20, 15, 10, 0.64), rgba(20, 15, 10, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.hero-copy {
  padding: 1rem 0;
}

.hero-copy-centered {
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  max-width: min(22rem, 100%);
  margin: 0.35rem auto 0;
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  line-height: 1.12;
  text-wrap: balance;
}

.hero-text {
  max-width: 36ch;
  font-size: 1.02rem;
  margin-top: 0.95rem;
  line-height: 1.55;
}

.hero-copy-centered .hero-text {
  margin-inline: auto;
}

.hero-eyebrow {
  color: rgba(255, 244, 220, 0.9);
}

.hero-text-light,
.hero-copy-centered h1,
.hero-points-light li {
  color: #f8f1e5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #c7a671);
  color: #fff;
  box-shadow: 0 18px 35px rgba(179, 148, 94, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--text);
}

.button-secondary-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-left: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
}


.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(179, 148, 94, 0.16);
}

.breed-grid,
.litter-grid,
.process-grid {
  display: grid;
  gap: 1.25rem;
}

.breed-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.breed-card,
.litter-card,
.process-card,
.feature-item,
.about-card,
.about-values article,
.contact-card,
.faq-list details {
  border: 1px solid rgba(179, 148, 94, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.breed-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
}

.breed-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(179, 148, 94, 0.14), rgba(143, 112, 64, 0.1));
}

.breed-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.breed-card:hover .breed-media img,
.breed-card:focus-within .breed-media img {
  transform: scale(1.04);
}

.litter-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.litter-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.litter-filter {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 10rem;
}

.litter-filter span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.litter-filter select {
  appearance: none;
  padding: 0.65rem 2.2rem 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a4d3f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.9rem center;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.litter-results-count {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.litter-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.litter-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.litter-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.8rem;
}

.litter-card.featured {
  background: linear-gradient(145deg, rgba(179, 148, 94, 0.14), rgba(255, 255, 255, 0.94));
}

.litter-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.litter-card-body h3 {
  margin-bottom: 0.65rem;
}

.litter-meta {
  display: grid;
  gap: 0.35rem;
}

.litter-meta p {
  margin: 0;
}

.litter-photo {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(179, 148, 94, 0.12), rgba(143, 112, 64, 0.08));
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.litter-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.litter-photo.is-empty {
  cursor: default;
}

.litter-photo.is-empty::after {
  content: "Sin foto";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.litter-photo:not(.is-empty):hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.litter-description-wrap {
  padding-top: 0.75rem;
}

.litter-description {
  margin: 0;
  font-style: italic;
  line-height: 1.55;
  color: var(--muted);
}

.litter-description:not(.is-expanded) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.litter-description.is-expanded {
  display: block;
}

.litter-read-more {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold-dark);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.litter-read-more:hover,
.litter-read-more:focus-visible {
  color: var(--text);
  outline: none;
}

.litter-read-more[hidden] {
  display: none;
}

.photo-count {
  min-height: 1.35rem;
  margin-top: auto;
  padding-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--gold-dark);
}

.photo-count:empty {
  visibility: hidden;
}

.loading-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

/* Lightbox — visor cinematográfico */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox[hidden] {
  display: flex !important;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(45, 36, 27, 0.35), transparent 70%),
    rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(18px) saturate(0.85);
}

.lightbox-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(96vw, 1200px);
  height: min(92vh, 900px);
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 0;
  padding: 0 clamp(2.5rem, 6vw, 4.5rem);
}

.lightbox-image {
  max-width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.lightbox-btn {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.06);
  color: rgba(255, 248, 236, 0.72);
  cursor: pointer;
  opacity: 0.55;
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.lightbox-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.lightbox:hover .lightbox-btn,
.lightbox:focus-within .lightbox-btn,
.lightbox-btn:focus-visible {
  opacity: 1;
}

.lightbox-btn:hover,
.lightbox-btn:focus-visible {
  background: rgba(255, 248, 236, 0.12);
  color: rgba(255, 248, 236, 0.95);
  outline: none;
}

.lightbox-close {
  top: 0;
  right: 0;
}

.lightbox-close svg {
  width: 1rem;
  height: 1rem;
}

.lightbox-prev {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-prev:focus-visible {
  transform: translateY(-50%) translateX(-2px);
}

.lightbox-next {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover,
.lightbox-next:focus-visible {
  transform: translateY(-50%) translateX(2px);
}

.lightbox.is-single .lightbox-prev,
.lightbox.is-single .lightbox-next {
  display: none;
}

.lightbox-counter {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 248, 236, 0.45);
}

.lightbox.is-single .lightbox-counter {
  display: none;
}

@media (max-width: 560px) {
  .lightbox-content {
    padding: 0 2rem;
  }

  .lightbox-btn {
    width: 2.15rem;
    height: 2.15rem;
    opacity: 0.7;
  }

  .lightbox-prev {
    left: -0.25rem;
  }

  .lightbox-next {
    right: -0.25rem;
  }
}

.status-pill {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #2f5f41;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pill.soft {
  background: rgba(179, 148, 94, 0.16);
  color: var(--gold-dark);
}

/* Badge de estado en tarjetas de camada — más pequeño y suave */
.litter-card .status-pill {
  align-self: flex-start;
  margin-bottom: 0.7rem;
  padding: 0.22rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, #4a8f62, #356b48);
  box-shadow: 0 2px 6px rgba(47, 95, 65, 0.18);
}

.litter-card .status-pill.soft {
  border-color: rgba(179, 148, 94, 0.35);
  background: rgba(179, 148, 94, 0.14);
  color: #8a7048;
  box-shadow: none;
}

.info-grid,
.about-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.info-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  padding: 1.4rem 1.5rem;
}

.dark-panel {
  background: linear-gradient(180deg, #2d241d 0%, #201812 100%);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f9f3e7;
}

.process-card p,
.process-card h3 {
  color: inherit;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(179, 148, 94, 0.2);
  color: #f7ebd5;
  font-size: 1.2rem;
  font-weight: 800;
}

.about-grid,
.contact-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card,
.about-values article,
.contact-card {
  padding: 2rem;
}

.about-values {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  padding: 1.25rem 1.4rem;
}

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

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

.faq-list details p {
  margin-top: 0.9rem;
}

.contact-details {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.contact-details a {
  color: var(--gold-dark);
  font-weight: 600;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--text);
}

.contact-form-intro {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.contact-form-success {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(74, 143, 98, 0.12);
  color: #2f5f41;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-field {
  display: grid;
  gap: 0.35rem;
}

.contact-field span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(179, 148, 94, 0.55);
  box-shadow: 0 0 0 3px rgba(179, 148, 94, 0.16);
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 3rem 0 1.4rem;
  border-top: 1px solid rgba(201, 174, 122, 0.16);
  background: #2a1d16;
  color: #f4eadc;
}

.footer-grid-rich {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 1.75rem;
  align-items: start;
}

.footer-brand strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: #fff6e8;
}

.footer-brand p {
  color: rgba(244, 234, 220, 0.78);
}

.footer-title {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  color: #f7ebd8;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-links span {
  color: rgba(244, 234, 220, 0.72);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  color: #ffffff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 174, 122, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  font-weight: 600;
  color: #f4eadc;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 174, 122, 0.14);
}

.footer-bottom p {
  color: rgba(244, 234, 220, 0.68);
}

@media (max-width: 1100px) {
  .litter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .breed-grid,
  .process-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-grid-rich {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 4.2rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(250, 246, 239, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .breed-grid,
  .process-grid,
  .litter-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  h1 {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding: clamp(1.75rem, 6vw, 2.75rem) 0;
  }

  .hero-copy {
    padding: 0.5rem 0;
  }

  .hero-video-section {
    min-height: clamp(24rem, 82vh, 40rem);
  }

  .hero-title {
    max-width: min(20rem, 100%);
    font-size: clamp(1.65rem, 5.5vw, 2.6rem);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .footer-grid-rich {
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    gap: 0.75rem;
  }

  .hero-logo-card img {
    border-radius: 18px;
  }
}
