/* ============================================================
   EL PERRO MOJADO — style.css
   Paleta extraída del logo de marca
   ============================================================ */


/* ────────────────────────────────────────
   FUENTES LOCALES
   ──────────────────────────────────────── */
@font-face {
  font-family: 'Nunito';
  src: url('assets/fonts/Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('assets/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}


/* ────────────────────────────────────────
   TOKENS
   ──────────────────────────────────────── */
:root {
  /* Colores */
  --cream:       #F5F0E8;
  --espresso:    #3D2A1A;
  --espresso-95: rgba(61, 42, 26, 0.95);
  --sage:        #6B7C5A;
  --sand:        #C8A882;
  --off-white:   #FAFAF7;
  --black:       #100C08;

  /* Tipografías */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-content: 'Nunito', 'DM Sans', system-ui, sans-serif;

  /* Easing */
  --ease-expo-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo-inout: cubic-bezier(0.87, 0, 0.13, 1);

  /* Espaciado */
  --nav-px: 3rem;
  --hero-px: 5.5rem;
}


/* ────────────────────────────────────────
   RESET
   ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto; /* Lenis maneja el smooth scroll */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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


/* ────────────────────────────────────────
   NAV
   ──────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--nav-px);
  background: transparent;
  transition:
    background     0.55s ease,
    padding        0.4s ease,
    backdrop-filter 0.55s ease,
    box-shadow     0.4s ease;
}

.nav.is-scrolled {
  background: var(--espresso-95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-block: 0.85rem;
  box-shadow: 0 4px 28px rgba(16, 12, 8, 0.30);
}

/* ── Logo circular ── */
.nav__logo {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(61, 42, 26, 0.09);
  flex-shrink: 0;
  background: #fff;
  box-shadow:
    0 2px 10px rgba(61, 42, 26, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    border-color 0.3s ease,
    transform 0.35s var(--ease-expo-out),
    box-shadow 0.35s ease;
}

.nav__logo:hover {
  border-color: var(--sand);
  transform: scale(1.06);
  box-shadow:
    0 5px 20px rgba(61, 42, 26, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

/* ── Menú ── */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ── Pill base — frosted glass sobre fondo oscuro ── */
.nav__pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.15rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  color: var(--off-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 2px 12px rgba(16, 12, 8, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transition:
    background     0.25s ease,
    border-color   0.25s ease,
    transform      0.28s var(--ease-expo-out),
    box-shadow     0.28s ease;
  white-space: nowrap;
}

.nav__pill:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(16, 12, 8, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

/* CTA — arena cálida, contraste máximo */
.nav__cta {
  background: var(--sand);
  color: var(--espresso);
  border-color: transparent;
  box-shadow:
    0 3px 16px rgba(200, 168, 130, 0.38),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.nav__cta:hover {
  background: var(--cream);
  color: var(--espresso);
  border-color: transparent;
  box-shadow:
    0 7px 24px rgba(200, 168, 130, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* ── Selector de idioma ── */
.nav__lang-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  padding: 0.18rem;
  gap: 0;
}

.nav__lang-btn {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(250, 250, 247, 0.50);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 2rem;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__lang-btn.is-active {
  background: rgba(255, 255, 255, 0.88);
  color: var(--espresso);
}

.nav__lang-btn:not(.is-active):hover {
  color: rgba(250, 250, 247, 0.82);
  background: rgba(255, 255, 255, 0.10);
}


/* ────────────────────────────────────────
   HERO
   ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 14vh;
}

/* Wrapper oversized para parallax — GSAP mueve este elemento */
.hero__bg-wrapper {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  z-index: 1;
  will-change: transform;
  /* Estado inicial: clip-path puesto por GSAP */
}

/* Slides del slideshow — apilados, el primero visible */
/* Slides del hero — img y video comparten este base */
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
}

/* Video: necesita display block para respetar object-fit */
video.hero__slide {
  display: block;
}

.hero__slide:first-child { opacity: 1; }

/* Grano de película — overlay editorial puro CSS */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 320px 320px;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* Overlay — vignette uniforme para texto centrado */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    /* Vignette radial: centro despejado, bordes oscuros */
    radial-gradient(
      ellipse at 50% 52%,
      rgba(16, 12, 8, 0.08) 0%,
      rgba(16, 12, 8, 0.62) 100%
    ),
    /* Capa base para legibilidad general */
    rgba(16, 12, 8, 0.30);
}

/* Contenido centrado — se desplaza en sentido opuesto al cursor */
.hero__content {
  position: relative;
  z-index: 5;
  padding: 0 var(--hero-px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
  font-family: var(--font-content);
}

/* Eyebrow */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.3rem;
  /* GSAP controla opacity e y */
  opacity: 0;
}

/* Título principal — Fraunces italic display */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 9.5vw, 10.5rem);
  font-weight: 700;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  line-height: 0.91;
  color: var(--off-white);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* Wrapper de línea — overflow hidden para el reveal */
.title-line {
  overflow: hidden;
  padding-bottom: 0.07em;
}

/* Cada span es el elemento que GSAP anima (translateY) */
.title-line span {
  display: block;
}

/* Subtítulo */
.hero__sub {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(250, 250, 247, 0.5);
  margin-bottom: 2.8rem;
  opacity: 0;
}

/* CTA — botón text con flecha */
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--off-white);
  border-bottom: 1px solid rgba(250, 250, 247, 0.28);
  padding-bottom: 0.32rem;
  opacity: 0;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    gap 0.4s var(--ease-expo-out);
}

.hero__btn:hover {
  color: var(--sand);
  border-color: var(--sand);
  gap: 1.4rem;
}

.hero__btn svg {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-expo-out);
}

.hero__btn:hover svg {
  transform: translateX(5px);
}

/* Review snippet — social proof en el hero */
.hero__review {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2.4rem;
  opacity: 0;
}

.hero__stars {
  font-size: 0.75rem;
  color: var(--sand);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.hero__review-quote {
  font-size: 0.7rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 250, 247, 0.52);
  letter-spacing: 0.01em;
  line-height: 1.4;
}


/* Indicador de scroll — línea animada */
.hero__scroll {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 54px;
  background: rgba(250, 250, 247, 0.14);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sand);
  animation: scroll-drip 2.2s var(--ease-expo-out) infinite;
  animation-delay: 0.4s;
}

@keyframes scroll-drip {
  0%   { top: -100%; opacity: 1; }
  65%  { top: 100%;  opacity: 1; }
  66%  { top: 100%;  opacity: 0; }
  67%  { top: -100%; opacity: 0; }
  100% { top: -100%; opacity: 0; }
}


/* ────────────────────────────────────────
   SECCIÓN KIM
   ──────────────────────────────────────── */
.kim {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Slideshow de fondo (desktop) ── */
.kim__bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kim__bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 25%;
  opacity: 0;
  transition: opacity 0s;
}

.kim__bg-slide:first-child  { opacity: 1; object-position: 50% 65%; } /* Lab + tulipán */
.kim__bg-slide:nth-child(2) { object-position: 50% 50%; }             /* Perro en playa */
.kim__bg-slide:nth-child(3) { object-position: 50% 40%; }             /* Pomerania */
.kim__bg-slide:nth-child(4) { object-position: 50% 35%; }             /* Japanese Spitz */
.kim__bg-slide:nth-child(5) { object-position: 50% 55%; }             /* Husky cachorro */

/* Overlay oscuro con vignette lateral */
.kim__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(16, 12, 8, 0.88) 0%,
      rgba(16, 12, 8, 0.60) 50%,
      rgba(16, 12, 8, 0.30) 100%
    ),
    rgba(16, 12, 8, 0.20);
}

/* ── Grid interior: texto + reseñas ── */
.kim__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 8rem 6rem;
  align-items: center;
}

/* ── Columna de texto (colores blancos sobre foto) ── */
.kim__text {
  font-family: var(--font-content);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kim__eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.4rem;
}

.kim__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.kim__title-line { display: block; }

.kim__body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250, 250, 247, 0.65);
  max-width: 46ch;
  margin-bottom: 2.8rem;
}

/* ── Lista de valores ── */
.kim__values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.kim__value {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.kim__value-icon {
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.kim__value div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.kim__value strong {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--off-white);
}

.kim__value span {
  font-size: 0.73rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.50);
}

/* ── Columna de reseñas (desktop) ── */
.kim__reviews {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kim__review-card {
  background: rgba(245, 240, 232, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 1.1rem;
  padding: 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.kim__review-card:hover {
  background: rgba(245, 240, 232, 0.16);
  transform: translateX(4px);
}

.kim__review-stars {
  font-size: 0.70rem;
  color: var(--sand);
  letter-spacing: 0.06em;
}

.kim__review-text {
  font-family: var(--font-content);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.85);
  line-height: 1.5;
}

.kim__review-author {
  font-family: var(--font-content);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 247, 0.40);
  text-transform: uppercase;
}

/* ── Tarjeta móvil (oculta en desktop) ── */
.kim__mobile-visual { display: none; }
.kim__badge         { display: none; }


/* ────────────────────────────────────────
   SECCIÓN RESERVAR
   ──────────────────────────────────────── */
.reservar {
  background: var(--espresso);
  padding: 8rem 6rem;
  position: relative;
  overflow: hidden;
}

/* Patrón de fondo — huellas sutiles en tono espresso claro */
.reservar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Cellipse cx='26' cy='36' rx='11' ry='9' fill='%23C8A882' fill-opacity='0.05'/%3E%3Ccircle cx='12' cy='22' r='5.5' fill='%23C8A882' fill-opacity='0.05'/%3E%3Ccircle cx='21' cy='16' r='5.5' fill='%23C8A882' fill-opacity='0.05'/%3E%3Ccircle cx='31' cy='16' r='5.5' fill='%23C8A882' fill-opacity='0.05'/%3E%3Ccircle cx='40' cy='22' r='5.5' fill='%23C8A882' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 52px 52px;
  pointer-events: none;
}

.reservar__inner {
  font-family: var(--font-content);
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* ── Cabecera ── */
.reservar__eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.4rem;
}

.reservar__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  line-height: 1.0;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.reservar__title-line {
  display: block;
}

.reservar__title-line--accent {
  color: var(--sand);
}

.reservar__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.45);
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

/* ── Formulario ── */
.reservar__form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form__row {
  display: grid;
  gap: 1.4rem;
}

.form__row--2 {
  grid-template-columns: 1fr 1fr;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.45);
}

.form__input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--off-white);
  background: rgba(250, 250, 247, 0.06);
  border: 1px solid rgba(250, 250, 247, 0.12);
  border-radius: 0.6rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: rgba(250, 250, 247, 0.2);
}

.form__input:focus {
  border-color: var(--sand);
  background: rgba(250, 250, 247, 0.09);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FAFAF7' stroke-opacity='0.35' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__select option {
  background: var(--espresso);
  color: var(--off-white);
}

.form__textarea {
  resize: vertical;
  min-height: 90px;
}

/* ── Acciones ── */
.form__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--sand);
  border: none;
  border-radius: 2rem;
  padding: 0.85rem 2rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(200, 168, 130, 0.32);
  transition:
    background 0.3s ease,
    transform 0.28s var(--ease-expo-out),
    box-shadow 0.28s ease;
}

.form__submit:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 130, 0.40);
}

.form__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(250, 250, 247, 0.4);
  transition: color 0.25s ease;
}

.form__whatsapp:hover {
  color: rgba(250, 250, 247, 0.75);
}

.form__whatsapp svg {
  flex-shrink: 0;
}


/* ────────────────────────────────────────
   SECCIÓN GALERÍA
   ──────────────────────────────────────── */
.galeria {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='44' rx='13' ry='10' fill='%236B7C5A' fill-opacity='0.07'/%3E%3Ccircle cx='14' cy='26' r='6.5' fill='%236B7C5A' fill-opacity='0.07'/%3E%3Ccircle cx='25' cy='19' r='6.5' fill='%236B7C5A' fill-opacity='0.07'/%3E%3Ccircle cx='39' cy='19' r='6.5' fill='%236B7C5A' fill-opacity='0.07'/%3E%3Ccircle cx='50' cy='26' r='6.5' fill='%236B7C5A' fill-opacity='0.07'/%3E%3C/svg%3E");
  background-size: 64px 64px;
  padding: 7rem 4rem;
}

.galeria__header {
  font-family: var(--font-content);
  text-align: center;
  margin-bottom: 3.5rem;
}

.galeria__eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.galeria__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  line-height: 1.05;
  color: var(--espresso);
  letter-spacing: -0.02em;
  display: flex;
  gap: 0.45em;
  justify-content: center;
  flex-wrap: wrap;
}

.galeria__title--accent {
  color: var(--sage);
}

/* ── Grid bento ── */
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px;
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.galeria__item {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  background: var(--espresso);
  cursor: pointer;
}

/* Border Collie — ocupa las 2 filas del primer columna */
.galeria__item--tall {
  grid-row: span 2;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-expo-out);
}

.galeria__item:hover img {
  transform: scale(1.06);
}

/* Overlay con nombre de raza */
.galeria__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,12,8,0.7) 0%, transparent 45%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.4rem;
  transition: opacity 0.35s ease;
}

.galeria__item:hover .galeria__overlay {
  opacity: 1;
}

.galeria__breed {
  font-family: var(--font-content);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
}


/* ────────────────────────────────────────
   LIGHTBOX
   ──────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(16, 12, 8, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 2rem;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(90vw, 1100px);
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 0.6rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  transition: opacity 0.2s ease;
}

.lightbox__img.is-fading {
  opacity: 0;
}

.lightbox__caption {
  font-family: var(--font-content);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.38);
}

/* Botón cerrar */
.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.8rem;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 250, 247, 0.08);
  border: 1px solid rgba(250, 250, 247, 0.14);
  border-radius: 50%;
  color: rgba(250, 250, 247, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}

.lightbox__close:hover {
  background: rgba(250, 250, 247, 0.16);
  color: var(--off-white);
  transform: scale(1.1);
}

/* Botones nav */
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 250, 247, 0.08);
  border: 1px solid rgba(250, 250, 247, 0.14);
  border-radius: 50%;
  color: rgba(250, 250, 247, 0.55);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(250, 250, 247, 0.16);
  color: var(--off-white);
}

/* Contador */
.lightbox__counter {
  position: fixed;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-content);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 247, 0.28);
}

@media (max-width: 600px) {
  .lightbox__prev { left: 0.6rem; }
  .lightbox__next { right: 0.6rem; }
  .lightbox__prev,
  .lightbox__next { width: 2.4rem; height: 2.4rem; font-size: 0.9rem; }
}


/* ────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────── */
.footer {
  font-family: var(--font-content);
  background: var(--black);
  padding: 2rem 4rem 1.2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.06);
  margin-bottom: 0.9rem;
  align-items: center;
}

/* ── Marca ── */
.footer__logo-link {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  margin-bottom: 0.7rem;
  transition: transform 0.35s var(--ease-expo-out);
}

.footer__logo-link:hover {
  transform: scale(1.05);
}

.footer__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.28);
}

.footer__location svg {
  flex-shrink: 0;
  color: var(--sand);
}

/* ── Columnas nav/contacto ── */
.footer__nav-title {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.22);
  margin-bottom: 0.55rem;
}

.footer__nav ul,
.footer__contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__nav a,
.footer__contact a {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.42);
  transition: color 0.25s ease;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--sand);
}

/* ── Franja inferior ── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.18);
}

.footer__ariden {
  color: rgba(250, 250, 247, 0.30);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__ariden:hover {
  color: var(--sand);
}

.footer__langs {
  display: flex;
  align-items: center;
  background: rgba(250, 250, 247, 0.05);
  border-radius: 2rem;
  padding: 0.15rem;
  gap: 0;
}

.footer__lang-btn {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(250, 250, 247, 0.35);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.28rem 0.58rem;
  border-radius: 2rem;
  line-height: 1;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer__lang-btn.is-active {
  background: var(--sand);
  color: var(--espresso);
}

.footer__lang-btn:not(.is-active):hover {
  color: rgba(250, 250, 247, 0.65);
}


/* ────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --nav-px:  1.6rem;
    --hero-px: 2.5rem;
  }

  /* Ocultar links en tablet, mantener lang + cta */
  .nav__link { display: none; }

  .hero__title {
    font-size: clamp(3.8rem, 13vw, 5.5rem);
  }

  /* Kim mobile: fondo desactivado, layout cream */
  .kim {
    min-height: unset;
    display: block;
    background: var(--cream);
  }

  .kim__bg-wrapper,
  .kim__overlay  { display: none; }

  .kim__inner {
    display: block;
    padding: 0 0 3rem;
  }

  .kim__text {
    padding: 2.2rem 1.8rem 1.8rem;
  }

  /* Colores de vuelta a espresso sobre fondo crema */
  .kim__eyebrow        { color: var(--sage); }
  .kim__title          { color: var(--espresso); }
  .kim__body           { color: rgba(61, 42, 26, 0.72); }
  .kim__value strong   { color: var(--espresso); }
  .kim__value span     { color: rgba(61, 42, 26, 0.55); }

  /* Ocultar reseñas desktop */
  .kim__reviews { display: none; }

  /* Mostrar tarjeta móvil */
  .kim__mobile-visual {
    display: block;
    margin: 0 1.2rem 2rem;
  }

  .kim__mobile-img-wrap {
    position: relative;
    height: 82vw;
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(61, 42, 26, 0.22);
  }

  .kim__mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 38% 22%;
  }

  .kim__mobile-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(16, 12, 8, 0.82) 0%,
      rgba(16, 12, 8, 0.30) 42%,
      transparent 68%
    );
  }

  /* Badge flotante */
  .kim__badge {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    z-index: 3;
    background: rgba(245, 240, 232, 0.90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 1rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(245, 240, 232, 0.6);
  }

  .kim__badge-stars {
    font-size: 0.68rem;
    color: var(--sand);
    letter-spacing: 0.08em;
  }

  .kim__badge-quote {
    font-family: var(--font-content);
    font-size: 0.80rem;
    font-style: italic;
    font-weight: 400;
    color: var(--espresso);
    line-height: 1.45;
  }

  .kim__badge-source {
    font-family: var(--font-content);
    font-size: 0.62rem;
    font-weight: 300;
    color: rgba(61, 42, 26, 0.48);
    letter-spacing: 0.04em;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-px:  1.1rem;
    --hero-px: 1.4rem;
  }

  .nav {
    padding-block: 0.75rem;
  }

  .nav__logo {
    width: 52px;
    height: 52px;
  }

  .nav__link { display: none; }
  .nav__cta  { display: none; } /* Ya hay CTA en el hero */

  /* Sin padding-bottom en hero centrado */

  .hero__title {
    font-size: clamp(3.2rem, 14vw, 4.5rem);
    margin-bottom: 1.6rem;
  }

  .hero__review {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero__scroll {
    display: none;
  }

  .kim__text {
    padding: 4rem 1.4rem 3rem;
  }

  .footer {
    padding: 1.6rem 1.4rem 1rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .reservar {
    padding: 5rem 1.4rem;
  }

  .form__row--2 {
    grid-template-columns: 1fr;
  }

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

  .galeria {
    padding: 5rem 1.4rem;
  }

  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .galeria__item--tall {
    grid-row: span 1;
  }

  .footer {
    padding: 1.8rem 2rem 1rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer__brand {
    grid-column: span 2;
  }
}
