:root {
  /* Paleta */
  --charcoal: #10110f;
  --charcoal-soft: #171914;
  --forest: #263b2d;
  --forest-light: #526c54;
  --ivory: #f4efe4;
  --ivory-muted: #d8d0bf;
  --stone: #9a978e;
  --gold: #c6a56a;
  --gold-soft: rgba(198, 165, 106, 0.18);
  --gold-bright: #d8b87a;
  --line: rgba(244, 239, 228, 0.16);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.36);

  /* Tipografía */
  --serif: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Posicionamiento del logo (ajustables vía debug panel) */
  --logo-offset-x: 0px;
  --logo-offset-y: 0px;

  /* Compat con el debug panel — apuntan al mismo valor */
  --dbg-header-logo-x: var(--logo-offset-x);
  --dbg-header-logo-y: var(--logo-offset-y);

  color-scheme: dark;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--charcoal);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--charcoal);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  padding: 0.8rem 1rem;
  background: var(--charcoal);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #0b0c0a;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.loader span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 4rem);
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  --hero-rail-width: clamp(17.8rem, 25.3vw, 28.8rem);
  --hero-rail-offset: clamp(1.35rem, 4.35vw, 5.1rem);
  --logo-shadow-soft: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
  --logo-shadow-outline: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.12));
  --logo-shadow-warm: drop-shadow(0 0 18px rgba(198, 165, 106, 0.16));
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  color: var(--ivory);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  --logo-shadow-soft: drop-shadow(0 11px 24px rgba(0, 0, 0, 0.56));
  --logo-shadow-outline: drop-shadow(0 0 1px rgba(244, 239, 228, 0.78));
  --logo-shadow-warm: drop-shadow(0 0 24px rgba(198, 165, 106, 0.24));
  border-bottom: 1px solid rgba(244, 239, 228, 0.1);
  background: linear-gradient(180deg, rgba(16, 17, 15, 0.84), rgba(16, 17, 15, 0.64));
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.site-header .brand {
  position: relative;
  isolation: isolate;
  width: clamp(17rem, 31vw, 29rem);
  justify-self: start;
  justify-content: center;
  margin-left: 0;
  transform: translate(var(--dbg-header-logo-x), var(--dbg-header-logo-y));
}

.site-header .brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 57%;
  left: 50%;
  width: min(96%, 18rem);
  height: clamp(3.4rem, 5.9vw, 5.5rem);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(8, 9, 7, 0.42), rgba(8, 9, 7, 0.16) 48%, transparent 73%),
    radial-gradient(ellipse at center, rgba(198, 165, 106, 0.12), transparent 68%);
  filter: blur(2px);
  opacity: 0.76;
  pointer-events: none;
  transform: translate(-50%, -44%);
  transition: background 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled .brand::before {
  background:
    radial-gradient(ellipse at center, rgba(8, 9, 7, 0.6), rgba(8, 9, 7, 0.31) 47%, transparent 74%),
    radial-gradient(ellipse at center, rgba(198, 165, 106, 0.2), transparent 68%);
  opacity: 0.96;
  transform: translate(-50%, -42%);
}

.brand-logo {
  position: relative;
  z-index: 1;
  height: clamp(66px, 6vw, 96px);
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  filter:
    var(--logo-shadow-soft, drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34)))
    var(--logo-shadow-outline, drop-shadow(0 1px 0 rgba(255, 255, 255, 0.12)))
    var(--logo-shadow-warm, drop-shadow(0 0 18px rgba(198, 165, 106, 0.16)));
  transition: filter 260ms ease, transform 260ms ease;
}

.footer-brand .brand-logo {
  height: clamp(54px, 4.8vw, 72px);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.32));
}

.desktop-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.4rem);
  justify-content: center;
  color: rgba(244, 239, 228, 0.76);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 0.55rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0.22rem;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: left 220ms ease, right 220ms ease, opacity 220ms ease;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.footer-links a:hover {
  color: var(--gold);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.social-nav {
  justify-self: end;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-right: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  min-height: 2.15rem;
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 999px;
  padding: 0.18rem;
  background: rgba(16, 17, 15, 0.28);
  backdrop-filter: blur(12px);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 1.7rem;
  border-radius: 999px;
  color: rgba(244, 239, 228, 0.68);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switch a:hover,
.language-switch a.is-active {
  color: #17140f;
  background: var(--gold);
  box-shadow: 0 8px 18px rgba(198, 165, 106, 0.22);
}

.mobile-language-switch {
  justify-self: center;
  margin-bottom: 0.35rem;
}

.mobile-menu .language-switch a {
  border: 0;
  font-size: 0.72rem;
  font-family: var(--sans);
  padding: 0;
  background: transparent;
}

.mobile-menu .language-switch a.is-active,
.mobile-menu .language-switch a:hover {
  background: var(--gold);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 50%;
  color: var(--ivory);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.social-icon:hover {
  background: rgba(244, 239, 228, 0.08);
}

.social-icon img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 2.6rem;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(244, 239, 228, 0.06);
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: var(--ivory);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 1.1rem;
  padding: 2rem;
  background: rgba(16, 17, 15, 0.94);
  backdrop-filter: blur(28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 10vw, 4rem);
  text-align: center;
}

.hero {
  --hero-rail-width: clamp(17.8rem, 25.3vw, 28.8rem);
  --hero-rail-offset: clamp(1.35rem, 4.35vw, 5.1rem);
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 8rem clamp(1.1rem, 5vw, 5rem) 5rem;
}

.hero-fallback,
.hero-rail,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-fallback {
  z-index: -4;
  object-fit: cover;
  object-position: 50% 32%;
  background:
    radial-gradient(circle at 70% 42%, rgba(82, 108, 84, 0.28), transparent 30rem),
    linear-gradient(90deg, #080907, #182016 48%, #080907);
  filter: saturate(0.92) contrast(1.06);
  transform: scale(1);
}

.hero-rail {
  inset: auto;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: -3;
  width: var(--hero-rail-width);
  height: min(100svh, 54rem);
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(180deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-rail-right {
  right: var(--hero-rail-offset);
  left: auto;
}

.hero-rail-track {
  display: grid;
  width: 100%;
  gap: clamp(0.8rem, 1.2vw, 1.15rem);
  animation: railDrift 22s linear infinite;
}

.hero-rail-right .hero-rail-track {
  animation-direction: reverse;
  animation-duration: 22s;
}

.hero-rail img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  filter: none;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 7, 0.94) 0%, rgba(8, 9, 7, 0.66) 34%, rgba(8, 9, 7, 0.18) 55%, rgba(8, 9, 7, 0.08) 78%, rgba(8, 9, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 9, 7, 0.9) 0%, transparent 42%, rgba(8, 9, 7, 0.18) 100%);
}

.hero-top-copy {
  position: absolute;
  z-index: 1;
  left: clamp(1rem, 4vw, 4rem);
  top: clamp(8.6rem, 16vh, 11rem);
  width: min(calc(100% - var(--hero-rail-width) - var(--hero-rail-offset) - clamp(1rem, 4vw, 4rem)), 42rem);
  display: grid;
  gap: 0.72rem;
}

.hero-top-copy .hero-kicker {
  margin: 0 0 0.4rem;
  text-align: left;
}

.hero-top-copy .hero-kicker > span {
  display: inline-block;
  border: 1px solid rgba(244, 239, 228, 0.26);
  border-radius: 999px;
  padding: 0.36rem 0.76rem;
  color: rgba(244, 239, 228, 0.9);
  letter-spacing: 0.07em;
  background: rgba(10, 12, 9, 0.42);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-top-copy .hero-intro-badge {
  border: 1px solid rgba(244, 239, 228, 0.2);
  border-radius: 10px;
  padding: 0.82rem 0.92rem;
  text-align: left;
  background: rgba(10, 12, 9, 0.4);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-top-copy .hero-intro-badge p {
  margin: 0 0 0.8rem;
  color: rgba(244, 239, 228, 0.86);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.56;
  text-wrap: pretty;
}

.hero-top-copy .hero-intro-badge p:last-child {
  margin-bottom: 0;
}

.hero-content {
  width: 100%;
  max-width: none;
  margin-left: 0;
  padding-right: 0;
  display: block;
}

.hero-content .hero-copy {
  width: min(calc(100% - var(--hero-rail-width) - var(--hero-rail-offset) - clamp(1rem, 4vw, 4rem)), 42rem);
  text-align: left;
  margin: 0 0 1rem;
  margin-left: 0;
  margin-right: 0;
  color: rgba(244, 239, 228, 0.84);
  font-size: clamp(1rem, 1.16vw, 1.15rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-content .hero-title {
  position: relative;
  width: min(calc(100% - var(--hero-rail-width) - var(--hero-rail-offset) - clamp(1rem, 4vw, 4rem)), 58rem);
  max-width: 14ch;
  margin: 0 0 1rem;
  text-align: left;
  text-wrap: pretty;
  font-size: clamp(2.7rem, 5.2vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--ivory);
  text-shadow:
    0 8px 26px rgba(0, 0, 0, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.12);
  transform: none;
}

.hero-content .hero-title::after {
  content: "";
  display: block;
  width: clamp(72px, 8vw, 120px);
  height: 3px;
  margin: 0.68rem 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 165, 106, 0.1), rgba(198, 165, 106, 0.95), rgba(198, 165, 106, 0.1));
  box-shadow: 0 6px 16px rgba(198, 165, 106, 0.28);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.96;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.7rem, 7vw, 7.1rem);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.hero-copy {
  max-width: 560px;
  color: rgba(244, 239, 228, 0.78);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.hero-actions,
.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button-primary {
  color: #15120a;
  background: linear-gradient(135deg, #e8d6ac, var(--gold));
  box-shadow: 0 18px 50px rgba(198, 165, 106, 0.24);
}

.button-secondary {
  border-color: rgba(244, 239, 228, 0.28);
  color: var(--ivory);
  background: rgba(244, 239, 228, 0.05);
  backdrop-filter: blur(18px);
}

.hero-catalog-focus {
  width: min(100%, 21rem);
  transform: var(--dbg-hero-catalog-transform, none);
  transform-origin: left center;
}

.hero-catalog-cta {
  width: 100%;
  min-height: var(--dbg-hero-catalog-height, 4rem);
  border-color: rgba(244, 239, 228, 0.42);
  padding-inline: clamp(1.4rem, 3vw, 2.25rem);
  font-size: var(--dbg-hero-catalog-size, 0.88rem);
  box-shadow:
    0 22px 52px rgba(16, 17, 15, 0.28),
    0 10px 28px rgba(198, 165, 106, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.hero-parents-cta {
  animation: parentsCtaPulse 2.8s ease-in-out infinite;
}

.button:hover,
.social-icon:hover {
  transform: translateY(-2px);
}

@keyframes parentsCtaPulse {
  0%,
  100% {
    border-color: rgba(244, 239, 228, 0.28);
    background: rgba(244, 239, 228, 0.05);
    box-shadow: 0 0 0 rgba(209, 170, 96, 0);
  }

  50% {
    border-color: rgba(212, 175, 106, 0.78);
    background: rgba(212, 175, 106, 0.14);
    box-shadow: 0 0 22px rgba(212, 175, 106, 0.42);
  }
}


.section-pad {
  padding: clamp(5.5rem, 12vw, 11rem) clamp(1.1rem, 5vw, 5rem);
  scroll-margin-top: clamp(60px, 8vh, 100px);
}

/* ═══════════════════════════════════════════════════
   GRADIENT ANIMATION OVERLAY
   Controlled by admin via localStorage CSS vars
═══════════════════════════════════════════════════ */
.bp-gradient-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: none;
  background: linear-gradient(40deg,
    var(--gradient-background-start, #050706),
    var(--gradient-background-end, #111712));
}
.bp-gradient-overlay.is-active { display: block; }

.bp-gradient-blobs {
  position: absolute;
  inset: 0;
  filter: url(#bp-goo) blur(40px);
}
.bp-gradient-blobs.bp-grad-safari { filter: blur(40px); }

.bp-gradient-blob {
  position: absolute;
  border-radius: 50%;
  width: var(--grad-size, 80%);
  height: var(--grad-size, 80%);
  top: calc(50% - var(--grad-size, 80%) / 2);
  left: calc(50% - var(--grad-size, 80%) / 2);
  mix-blend-mode: var(--grad-blend, hard-light);
}
.bp-gradient-blob:nth-child(1) {
  background: radial-gradient(circle at center, rgb(var(--grad-color-1, 47,217,144)) 0, rgb(var(--grad-color-1, 47,217,144)) 50%) no-repeat;
  transform-origin: center center;
  animation: bpMoveVertical calc(30s / var(--grad-speed, 1)) ease infinite;
}
.bp-gradient-blob:nth-child(2) {
  background: radial-gradient(circle at center, rgba(var(--grad-color-2, 216,187,115), 0.8) 0, rgba(var(--grad-color-2, 216,187,115), 0) 50%) no-repeat;
  transform-origin: calc(50% - 400px);
  animation: bpMoveInCircle calc(20s / var(--grad-speed, 1)) reverse infinite;
}
.bp-gradient-blob:nth-child(3) {
  background: radial-gradient(circle at center, rgba(var(--grad-color-3, 247,237,216), 0.8) 0, rgba(var(--grad-color-3, 247,237,216), 0) 50%) no-repeat;
  transform-origin: calc(50% + 400px);
  animation: bpMoveInCircle calc(40s / var(--grad-speed, 1)) linear infinite;
}
.bp-gradient-blob:nth-child(4) {
  background: radial-gradient(circle at center, rgba(var(--grad-color-4, 17,23,18), 0.8) 0, rgba(var(--grad-color-4, 17,23,18), 0) 50%) no-repeat;
  transform-origin: calc(50% - 200px);
  animation: bpMoveHorizontal calc(40s / var(--grad-speed, 1)) ease infinite;
  opacity: 0.7;
}
.bp-gradient-blob:nth-child(5) {
  background: radial-gradient(circle at center, rgba(var(--grad-color-5, 5,7,6), 0.8) 0, rgba(var(--grad-color-5, 5,7,6), 0) 50%) no-repeat;
  transform-origin: calc(50% - 800px) calc(50% + 800px);
  animation: bpMoveInCircle calc(20s / var(--grad-speed, 1)) ease infinite;
}
.bp-gradient-pointer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  mix-blend-mode: var(--grad-blend, hard-light);
  opacity: 0.7;
  background: radial-gradient(circle at center, rgba(var(--grad-pointer, 47,217,144), 0.8) 0, rgba(var(--grad-pointer, 47,217,144), 0) 50%) no-repeat;
}
@keyframes bpMoveVertical {
  0%   { transform: translateY(-50%); }
  50%  { transform: translateY(50%); }
  100% { transform: translateY(-50%); }
}
@keyframes bpMoveInCircle {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}
@keyframes bpMoveHorizontal {
  0%   { transform: translateX(-50%) translateY(-10%); }
  50%  { transform: translateX(50%) translateY(10%); }
  100% { transform: translateX(-50%) translateY(-10%); }
}

.story {
  color: var(--charcoal);
  background: var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.story-image {
  min-height: 72svh;
  overflow: hidden;
}

.story-image img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.story-copy p {
  max-width: 640px;
  color: rgba(16, 17, 15, 0.68);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.story-copy h2 {
  max-width: 15ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.story-manifesto {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}

.story-manifesto p {
  margin-bottom: 0;
  max-width: none;
  color: rgba(16, 17, 15, 0.72);
  font-size: clamp(0.97rem, 1.2vw, 1.08rem);
  line-height: 1.68;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(244, 239, 228, 0.66);
}

.bloodlines {
  background: var(--charcoal);
}

.bloodlines .section-heading {
  display: grid;
  justify-items: center;
  max-width: min(100%, 860px);
  margin-inline: auto;
  text-align: center;
}

.bloodlines .section-heading > .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 0.95rem;
  border: 1px solid rgba(212, 175, 106, 0.34);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  color: rgba(244, 239, 228, 0.88);
  font-family: var(--sans);
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 840;
  letter-spacing: 0.11em;
  line-height: 1;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 106, 0.22), transparent 70%),
    rgba(244, 239, 228, 0.06);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.bloodlines-title {
  width: min(100%, 17ch);
  margin: 0 auto;
  max-width: 17ch;
  text-align: center;
  text-wrap: balance;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.02;
  font-size: clamp(2.25rem, 5vw, 5.2rem);
  color: var(--ivory);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bloodlines-title::after {
  content: "";
  display: block;
  width: clamp(92px, 13vw, 156px);
  height: 4px;
  margin: 0.9rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 175, 106, 0.06), rgba(212, 175, 106, 0.95), rgba(212, 175, 106, 0.06));
}

.product-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 700ms ease;
}

.product-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.product-meta span {
  border: 1px solid rgba(244, 239, 228, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.6rem;
  color: rgba(244, 239, 228, 0.78);
  font-size: 0.68rem;
  text-transform: uppercase;
  background: rgba(244, 239, 228, 0.06);
}

.lineage-bubbles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.6rem);
  max-width: 1240px;
  margin: 0 auto;
}

.lineage-bubble {
  position: relative;
  display: grid;
  align-content: end;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 50%;
  isolation: isolate;
  background: #0b0c0a;
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.26);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms ease;
  will-change: transform;
  contain: paint;
}

.lineage-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.32);
}

.lineage-bubble img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: translateZ(0) scale(var(--lineage-scale, 1));
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), opacity 760ms ease;
}

.lineage-placeholder {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 35% 24%, rgba(198, 165, 106, 0.22), transparent 8rem),
    linear-gradient(135deg, #22271f, #0b0c0a);
}

.lineage-bubble img.lineage-cycle-layer {
  opacity: 0;
  pointer-events: none;
}

.lineage-bubble:hover img {
  transform: translateZ(0) scale(calc(var(--lineage-scale, 1) * 1.02));
}

.lineage-bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 7, 5, 0.82) 100%);
}

.lineage-bubble div {
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  text-align: center;
}

.lineage-bubble span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lineage-bubble h3 {
  margin-bottom: 0.5rem;
}

.lineage-bubble p {
  margin: 0 auto;
  max-width: 15rem;
  color: rgba(244, 239, 228, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.filter-chip {
  border: 1px solid rgba(244, 239, 228, 0.18);
  border-radius: 999px;
  padding: 0.76rem 1rem;
  color: rgba(244, 239, 228, 0.72);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-chip.is-active {
  border-color: rgba(198, 165, 106, 0.55);
  color: var(--charcoal);
  background: var(--gold);
}

.catalog {
  color: var(--charcoal);
  background: var(--ivory);
}

.catalog .section-heading p {
  color: rgba(16, 17, 15, 0.62);
}

.catalog .section-heading .eyebrow {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  letter-spacing: 0.07em;
}

.catalog .catalog-title {
  margin: 0 auto 1.05rem;
  max-width: 20ch;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(2.1rem, 4.7vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.catalog .catalog-title::after {
  content: "";
  display: block;
  width: clamp(88px, 12vw, 140px);
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 17, 15, 0.12), var(--gold), rgba(16, 17, 15, 0.12));
}

.catalog .catalog-tagline {
  margin: 1rem auto 0.7rem;
  max-width: 28rem;
  color: rgba(16, 17, 15, 0.58);
  font-size: clamp(0.86rem, 1.05vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog .catalog-delivery {
  display: inline-flex;
  align-items: center;
  margin: 0 auto 1.4rem;
  border: 1px solid rgba(198, 165, 106, 0.42);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  color: rgba(16, 17, 15, 0.78);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(251, 246, 235, 0.6)),
    var(--gold-soft);
  box-shadow:
    0 8px 22px rgba(16, 17, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.catalog .catalog-delivery strong {
  margin-left: 0.32rem;
  color: var(--charcoal);
  font-weight: 700;
}

/* Alterna el fondo del segundo catálogo para diferenciación visual */
.catalog-alt {
  background:
    radial-gradient(circle at 80% 10%, rgba(198, 165, 106, 0.08), transparent 24rem),
    linear-gradient(180deg, #f0eadb 0%, var(--ivory) 60%);
}

.catalog-alt .filter-chip.is-active {
  background: var(--charcoal);
  color: var(--ivory);
}

.catalog-controls {
  justify-content: center;
  margin-bottom: 2rem;
}

.catalog .filter-chip {
  border-color: rgba(16, 17, 15, 0.18);
  color: rgba(16, 17, 15, 0.7);
}

.catalog .filter-chip.is-active {
  color: var(--ivory);
  background: var(--forest);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
  max-width: 1360px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 0.78rem;
  min-height: 100%;
  padding: 0.75rem 0.75rem 0.95rem;
  border: 1px solid rgba(16, 17, 15, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 246, 239, 0.98) 100%),
    radial-gradient(circle at 18% 0%, rgba(198, 165, 106, 0.16), transparent 18rem);
  box-shadow: 0 18px 40px rgba(16, 17, 15, 0.1);
  cursor: pointer;
  transition: opacity 220ms ease, transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(198, 165, 106, 0.18), transparent 34%),
    linear-gradient(315deg, rgba(38, 59, 45, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(198, 165, 106, 0.42);
  box-shadow: 0 28px 60px rgba(16, 17, 15, 0.18);
}

.product-card:hover::before,
.product-card:focus-visible::before {
  opacity: 1;
}

.product-card:focus-visible {
  outline: 2px solid rgba(198, 165, 106, 0.56);
  outline-offset: 1px;
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 8px;
  background: #e8e5dd;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, transparent 22%, transparent 70%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.22), transparent 9rem);
}

.product-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  overflow: hidden;
  transition: opacity 520ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 700ms ease;
}

.product-media > img {
  position: relative;
  z-index: 0;
}

.product-media > img.product-cycle-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.product-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(16, 17, 15, 0.12), rgba(16, 17, 15, 0.04)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.22) 0 12px, rgba(255, 255, 255, 0.08) 12px 24px);
}

.product-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.product-status {
  position: absolute;
  top: 0.68rem;
  left: 0.68rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  border-radius: 999px;
  padding: 0.35rem 0.76rem;
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f110d;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(16, 17, 15, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.product-photo-count {
  position: absolute;
  right: 0.68rem;
  bottom: 0.68rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(12, 14, 11, 0.56);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.product-card.status-available .product-status {
  color: #07351f;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 244, 196, 0.74), transparent 42%),
    linear-gradient(135deg, rgba(203, 255, 224, 0.98), rgba(112, 218, 153, 0.93));
  border-color: rgba(17, 117, 65, 0.28);
  box-shadow:
    0 0 0 1px rgba(47, 171, 96, 0.26),
    0 0 22px rgba(45, 205, 112, 0.42),
    0 10px 22px rgba(9, 74, 38, 0.16);
  animation: availableBadgeGlow 2.1s ease-in-out infinite;
}

.product-card.status-priority .product-status {
  color: #3e2b0d;
  background: linear-gradient(135deg, rgba(255, 238, 192, 0.98), rgba(231, 184, 92, 0.92));
  border-color: rgba(130, 87, 21, 0.24);
  box-shadow: 0 0 0 1px rgba(185, 142, 62, 0.24), 0 0 18px rgba(218, 167, 66, 0.3);
}

.product-card.status-reserved .product-status {
  color: #fff3ef;
  background: linear-gradient(135deg, rgba(111, 23, 24, 0.98), rgba(190, 47, 44, 0.94));
  border-color: rgba(255, 198, 180, 0.24);
  box-shadow:
    0 0 0 1px rgba(122, 20, 20, 0.22),
    0 0 20px rgba(206, 38, 34, 0.32),
    0 10px 22px rgba(73, 8, 8, 0.18);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.product-meta .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  border: 1px solid rgba(16, 17, 15, 0.14);
  border-radius: 7px;
  padding: 0.36rem 0.64rem;
  color: rgba(16, 17, 15, 0.72);
  font-size: 0.66rem;
  font-weight: 760;
  text-transform: uppercase;
  background: rgba(16, 17, 15, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}
.product-meta .meta-pill em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.72;
}
.product-meta .meta-sex-macho {
  color: #123252;
  border-color: rgba(71, 127, 184, 0.32);
  background:
    linear-gradient(135deg, rgba(214, 233, 248, 0.96), rgba(173, 207, 235, 0.76)),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 8px 18px rgba(54, 102, 151, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}
.product-meta .meta-sex-hembra {
  color: #642045;
  border-color: rgba(188, 86, 136, 0.32);
  background:
    linear-gradient(135deg, rgba(252, 221, 234, 0.97), rgba(238, 185, 212, 0.76)),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 8px 18px rgba(145, 49, 96, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}
.product-meta .meta-sex-neutral {
  color: #454036;
  border-color: rgba(139, 128, 108, 0.34);
  background:
    linear-gradient(135deg, rgba(235, 230, 219, 0.96), rgba(211, 202, 184, 0.72)),
    rgba(255, 255, 255, 0.54);
  box-shadow: 0 8px 18px rgba(99, 89, 70, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}
.product-meta .meta-age {
  color: #4f3510;
  border-color: rgba(198, 153, 70, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 235, 190, 0.97), rgba(235, 199, 128, 0.74)),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 8px 18px rgba(151, 109, 36, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.product-card h3 {
  font-size: clamp(1.38rem, 2vw, 1.86rem);
  line-height: 1.04;
  margin-bottom: 0;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid rgba(198, 165, 106, 0.34);
  border-radius: 8px;
  padding: 0.7rem 0.78rem;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(20, 23, 18, 0.98), rgba(37, 45, 34, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(198, 165, 106, 0.24), transparent 10rem);
  box-shadow: 0 12px 26px rgba(16, 17, 15, 0.12);
}

.product-price small {
  flex-basis: 100%;
  color: rgba(244, 239, 228, 0.62);
  font-size: 0.68rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: right;
}

.product-price small:empty {
  display: none;
}

.product-price span {
  color: rgba(244, 239, 228, 0.54);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-price strong {
  color: #f5dca0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.product-description {
  display: block;
  align-self: start;
  max-width: 100%;
  border: 1px solid rgba(117, 96, 58, 0.16);
  border-radius: 8px;
  padding: 0.76rem 0.9rem;
  margin: 0;
  color: rgba(34, 30, 22, 0.72);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 239, 220, 0.72)),
    rgba(244, 239, 228, 0.42);
  box-shadow:
    0 8px 18px rgba(67, 51, 24, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-card:hover .product-description {
  border-color: rgba(198, 165, 106, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 241, 222, 0.82)),
    rgba(244, 239, 228, 0.48);
  box-shadow:
    0 12px 24px rgba(67, 51, 24, 0.1),
    0 0 0 1px rgba(198, 165, 106, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

.card-view,
.card-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0.6rem 0.8rem;
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.card-view {
  color: #171a14;
  border-color: rgba(16, 17, 15, 0.15);
  background: rgba(16, 17, 15, 0.05);
}

.card-whatsapp {
  color: #f4efe4;
  background: linear-gradient(135deg, #1a7f4b, #1ba45f);
  box-shadow: 0 10px 24px rgba(25, 120, 71, 0.26);
}

.product-card:hover .card-view {
  border-color: rgba(16, 17, 15, 0.24);
  background: rgba(16, 17, 15, 0.08);
}

.card-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(25, 120, 71, 0.34);
}

@keyframes availableBadgeGlow {
  0% {
    box-shadow: 0 0 0 1px rgba(47, 171, 96, 0.22), 0 0 12px rgba(45, 205, 112, 0.22), 0 10px 22px rgba(9, 74, 38, 0.14);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(47, 171, 96, 0.34), 0 0 28px rgba(45, 205, 112, 0.48), 0 12px 26px rgba(9, 74, 38, 0.18);
  }
  100% {
    box-shadow: 0 0 0 1px rgba(47, 171, 96, 0.22), 0 0 12px rgba(45, 205, 112, 0.22), 0 10px 22px rgba(9, 74, 38, 0.14);
  }
}

.waitlist {
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(244, 239, 228, 0.74), rgba(244, 239, 228, 0.54)),
    url("public/assets/matriarch.jpg") center / cover;
}

.waitlist-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.waitlist-copy p {
  max-width: 620px;
  color: rgba(16, 17, 15, 0.66);
}

.waitlist-copy > .eyebrow {
  display: inline-flex;
  border: 1px solid rgba(16, 17, 15, 0.12);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.waitlist-copy h2 {
  max-width: 9ch;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #11130f;
}

.waitlist-copy .waitlist-title {
  position: relative;
  display: inline-block;
  max-width: 13ch;
  margin-top: 0.9rem;
  margin-bottom: 1.05rem;
  padding-bottom: 0.72rem;
  color: #0e100d;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.16);
}

.waitlist-copy .waitlist-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(96px, 16vw, 172px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 165, 106, 0.98), rgba(198, 165, 106, 0.18));
  box-shadow: 0 6px 18px rgba(198, 165, 106, 0.3);
}

.waitlist-copy > p:not(.eyebrow) {
  position: relative;
  border-left: 1px solid rgba(198, 165, 106, 0.62);
  padding-left: 1.1rem;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.waitlist-copy > p.waitlist-lead {
  max-width: 45rem;
  border-left: 0;
  border: 1px solid rgba(198, 165, 106, 0.35);
  border-radius: 10px;
  padding: 0.95rem 1rem 1rem;
  color: rgba(16, 17, 15, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(251, 246, 235, 0.66)),
    rgba(244, 239, 228, 0.46);
  box-shadow:
    0 14px 34px rgba(16, 17, 15, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.waitlist-lead .lead-emphasis {
  display: block;
  margin-bottom: 0.42rem;
  color: #11130f;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.36rem);
  font-weight: 400;
  line-height: 1.2;
}

.quiet-list {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
  max-width: 34rem;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 15, 0.12);
  border-radius: 0.95rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.95rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(244, 239, 228, 0.5)),
    rgba(244, 239, 228, 0.42);
  box-shadow:
    0 18px 44px rgba(16, 17, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.quiet-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 16% 20%, rgba(198, 165, 106, 0.22), transparent 40%);
  transition: opacity 220ms ease;
}

.quiet-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 165, 106, 0.34);
  box-shadow:
    0 24px 58px rgba(16, 17, 15, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quiet-list li:hover::before {
  opacity: 1;
}

.quiet-list .tier-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.45rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #1a1711;
  font-family: var(--serif);
  font-size: 1rem;
  background: linear-gradient(135deg, #f7ead0, #c6a56a);
  box-shadow:
    0 10px 22px rgba(198, 165, 106, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.quiet-list .tier-mark svg {
  width: 1.24rem;
  height: 1.24rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quiet-list div {
  position: relative;
  z-index: 1;
  max-width: 27rem;
}

.quiet-list strong {
  display: block;
  margin-bottom: 0.22rem;
  color: #11130f;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.05;
}

.quiet-list p {
  margin: 0;
  max-width: 27rem;
  color: rgba(16, 17, 15, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-card {
  display: grid;
  gap: 0.9rem;
  border: 1px solid rgba(16, 17, 15, 0.12);
  border-radius: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: rgba(244, 239, 228, 0.72);
  box-shadow: 0 30px 90px rgba(16, 17, 15, 0.18);
  backdrop-filter: blur(18px);
}

.contact-card {
  align-self: center;
  max-width: 27rem;
  justify-self: center;
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 0.2rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.contact-card p {
  color: rgba(16, 17, 15, 0.66);
}

.contact-card .eyebrow {
  margin-bottom: -0.15rem;
}

.contact-direct {
  display: grid;
  gap: 0.52rem;
  width: min(100%, 24rem);
  margin: 0.15rem auto 0.2rem;
}

.contact-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(16, 17, 15, 0.14);
  border-radius: 8px;
  padding: 0.58rem 0.72rem;
  text-align: left;
  color: #1a1c18;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 6px 18px rgba(16, 17, 15, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-chip span {
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(16, 17, 15, 0.55);
}

.contact-chip strong {
  font-size: 0.86rem;
  font-weight: 760;
  color: rgba(16, 17, 15, 0.86);
}

.contact-chip-whatsapp:hover {
  transform: translateY(-1px);
  border-color: rgba(27, 164, 95, 0.42);
  background: rgba(222, 248, 233, 0.68);
  box-shadow: 0 10px 22px rgba(27, 164, 95, 0.2);
}

.contact-chip-email:hover {
  transform: translateY(-1px);
  border-color: rgba(198, 165, 106, 0.44);
  background: rgba(251, 245, 229, 0.72);
  box-shadow: 0 10px 22px rgba(198, 165, 106, 0.22);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.contact-actions .button {
  flex: 0 1 auto;
  min-width: 8.4rem;
  border: 0;
  padding: 0.72rem 0.95rem;
  font-size: 0.68rem;
  line-height: 1;
}

.contact-actions .button-primary {
  isolation: isolate;
  overflow: visible;
  color: #061107;
  background: linear-gradient(135deg, #dfffe8 0%, #65f394 28%, #25d366 58%, #0d8f3f 100%);
  box-shadow:
    0 14px 34px rgba(5, 20, 9, 0.22),
    0 0 32px rgba(37, 211, 102, 0.38);
}

.contact-actions .button-primary::before {
  content: "";
  position: absolute;
  inset: -0.42rem -0.62rem;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(37, 211, 102, 0.42), rgba(37, 211, 102, 0) 68%);
  animation: contactWhatsAppGlow 2.6s ease-in-out infinite;
}

.contact-actions .button-primary:hover {
  box-shadow:
    0 18px 42px rgba(5, 20, 9, 0.24),
    0 0 46px rgba(37, 211, 102, 0.52);
}

.contact-actions .contact-instagram,
.contact-actions .contact-facebook {
  isolation: isolate;
  overflow: visible;
  color: #fff;
  backdrop-filter: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.contact-actions .contact-instagram {
  background: linear-gradient(135deg, #ffe480 0%, #ff9b3d 24%, #f03a82 52%, #b83bc7 76%, #5653f0 100%);
  box-shadow:
    0 12px 28px rgba(150, 47, 191, 0.24),
    0 0 22px rgba(214, 41, 118, 0.14);
}

.contact-actions .contact-facebook {
  background: linear-gradient(135deg, #9dd2ff 0%, #3f95ff 26%, #1877f2 58%, #0752bd 100%);
  box-shadow:
    0 12px 28px rgba(24, 119, 242, 0.24),
    0 0 22px rgba(24, 119, 242, 0.14);
}

.contact-actions .button-primary::after,
.contact-actions .contact-instagram::after,
.contact-actions .contact-facebook::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -1px 0 rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.contact-actions .contact-instagram:hover {
  box-shadow:
    0 16px 34px rgba(150, 47, 191, 0.28),
    0 0 26px rgba(214, 41, 118, 0.22);
}

.contact-actions .contact-facebook:hover {
  box-shadow:
    0 16px 34px rgba(24, 119, 242, 0.28),
    0 0 26px rgba(24, 119, 242, 0.22);
}

@keyframes contactWhatsAppGlow {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1.35rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.1rem, 5vw, 5rem);
  color: rgba(244, 239, 228, 0.72);
  text-align: center;
  background:
    linear-gradient(180deg, #0d0e0b 0%, #0a0b09 100%);
  border-top: 1px solid rgba(244, 239, 228, 0.08);
}

.site-footer p {
  max-width: 500px;
  margin-bottom: 0;
}

.footer-brand-block {
  display: grid;
  justify-items: center;
  gap: 0.52rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-summary {
  color: rgba(244, 239, 228, 0.78);
  font-size: 0.95rem;
}

.footer-email {
  color: rgba(244, 239, 228, 0.7);
  font-size: 0.88rem;
}

.footer-email a {
  color: rgba(244, 239, 228, 0.9);
  border-bottom: 1px solid rgba(198, 165, 106, 0.42);
}

.footer-email a:hover {
  color: var(--gold);
  border-bottom-color: rgba(198, 165, 106, 0.85);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  align-content: center;
  justify-content: center;
  max-width: 58rem;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-links a {
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(244, 239, 228, 0.04);
}

.footer-links a:hover {
  border-color: rgba(198, 165, 106, 0.5);
  background: rgba(198, 165, 106, 0.1);
}

.copyright {
  width: min(100%, 56rem);
  margin-top: 0.2rem;
  border-top: 1px solid rgba(244, 239, 228, 0.12);
  padding-top: 1rem;
  font-size: 0.82rem;
  text-align: center;
}

.lineage-bubble {
  cursor: pointer;
}

.bubble-cta {
  margin: 0.35rem auto 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.lineage-bubble:hover .bubble-cta,
.lineage-bubble:focus-visible .bubble-cta {
  opacity: 1;
  transform: translateY(0);
}

.gallery-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 4, 0.88);
  backdrop-filter: blur(18px);
}

.gallery-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 960px);
  height: min(90svh, 880px);
  max-height: 90svh;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 0%, rgba(198, 165, 106, 0.12), transparent 18rem),
    linear-gradient(180deg, #10130e 0%, #0b0d09 100%);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
  color: var(--ivory);
  transform: scale(0.96);
  transition: transform 260ms ease;
}

.gallery-modal.is-open .gallery-panel {
  transform: scale(1);
}

.gallery-header {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.gallery-title-block {
  min-width: 0;
}

.gallery-title-block h2 {
  margin-bottom: 0.6rem;
}

.gallery-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.45rem;
  border-radius: 999px;
  padding: 0.48rem 0.72rem 0.48rem 0.58rem;
  color: var(--ivory);
  border: 1px solid rgba(244, 239, 228, 0.18);
  background:
    linear-gradient(135deg, rgba(244, 239, 228, 0.1), rgba(244, 239, 228, 0.045)),
    rgba(8, 9, 7, 0.52);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.gallery-close-btn::before {
  content: "×";
  display: grid;
  place-items: center;
  width: 1.42rem;
  height: 1.42rem;
  border-radius: 50%;
  color: #0d100c;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #f4efe4, #d6c8ad);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.gallery-close-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(198, 165, 106, 0.46);
  background:
    linear-gradient(135deg, rgba(198, 165, 106, 0.18), rgba(244, 239, 228, 0.06)),
    rgba(8, 9, 7, 0.68);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(198, 165, 106, 0.12);
}

.gallery-main {
  position: relative;
  flex: 1 1 0;
  min-height: 18rem;
  border: 1px solid rgba(244, 239, 228, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(36, 33, 23, 0.62), transparent 60%),
    linear-gradient(135deg, rgba(244, 239, 228, 0.05), rgba(244, 239, 228, 0.02)),
    #0a0c08;
}

.gallery-featured {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  transition: opacity 420ms ease, transform 420ms ease;
}

.gallery-main .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(11, 13, 9, 0.55);
  backdrop-filter: blur(6px);
}

.gallery-main .gallery-prev { left: 0.4rem; }
.gallery-main .gallery-next { right: 0.4rem; }

.gallery-featured.is-fading {
  opacity: 0;
  transform: scale(0.992);
}

.gallery-nav {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(244, 239, 228, 0.22);
  border-radius: 50%;
  background: rgba(11, 13, 9, 0.55);
  backdrop-filter: blur(6px);
  color: var(--ivory);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.gallery-nav:hover {
  background: rgba(11, 13, 9, 0.78);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.86rem;
  overflow: visible;
  padding-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-thumbs {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 260ms ease, margin-top 260ms ease, opacity 220ms ease, transform 220ms ease;
  }

  .gallery-panel:hover .gallery-thumbs,
  .gallery-panel:focus-within .gallery-thumbs {
    max-height: 10rem;
    margin-top: 0.86rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.gallery-thumb {
  flex: 0 0 auto;
  width: clamp(3.9rem, 7vw, 5rem);
  height: clamp(3.9rem, 7vw, 5rem);
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.56;
  border: 1px solid rgba(244, 239, 228, 0.14);
  transition: opacity 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
  border-color: var(--gold);
}

.gallery-desc {
  display: inline-flex;
  align-self: center;
  max-width: min(100%, 42rem);
  margin: 0.72rem auto 0.55rem;
  border: 1px solid rgba(198, 165, 106, 0.34);
  border-radius: 9px;
  padding: 0.58rem 0.82rem;
  color: rgba(244, 239, 228, 0.86);
  font-size: 0.78rem;
  font-weight: 640;
  line-height: 1.42;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(42, 38, 28, 0.9), rgba(24, 22, 16, 0.84)),
    radial-gradient(circle at 0% 0%, rgba(198, 165, 106, 0.16), transparent 10rem);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(198, 165, 106, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.gallery-desc:empty {
  display: none;
}

.gallery-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  border: 1px solid rgba(198, 165, 106, 0.46);
  border-radius: 999px;
  padding: 0.48rem 0.92rem;
  color: #ffe4a8;
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 225, 152, 0.18), transparent 9rem),
    linear-gradient(135deg, rgba(39, 45, 33, 0.96), rgba(18, 20, 15, 0.92));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(198, 165, 106, 0.16),
    0 0 24px rgba(198, 165, 106, 0.14);
}

.gallery-price[hidden],
.gallery-price:empty {
  display: none !important;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 0.72rem;
}

.gallery-meta[hidden],
.gallery-meta:empty {
  display: none;
}

.gallery-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  min-height: 2.1rem;
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 8px;
  padding: 0.38rem 0.58rem;
  background: rgba(244, 239, 228, 0.07);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gallery-meta-pill small {
  color: rgba(244, 239, 228, 0.48);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-meta-pill strong {
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-meta-status-available {
  border-color: rgba(91, 219, 142, 0.28);
  background:
    linear-gradient(135deg, rgba(34, 119, 70, 0.42), rgba(20, 53, 35, 0.5)),
    rgba(244, 239, 228, 0.05);
}

.gallery-meta-status-available strong {
  color: #bff6d2;
}

.gallery-meta-status-reserved {
  border-color: rgba(255, 133, 126, 0.28);
  background:
    linear-gradient(135deg, rgba(134, 37, 36, 0.46), rgba(62, 20, 20, 0.52)),
    rgba(244, 239, 228, 0.05);
}

.gallery-meta-status-reserved strong {
  color: #ffd0cb;
}

.gallery-meta-age {
  border-color: rgba(198, 165, 106, 0.3);
  background:
    linear-gradient(135deg, rgba(128, 92, 34, 0.32), rgba(38, 31, 20, 0.56)),
    rgba(244, 239, 228, 0.05);
}

.gallery-meta-days {
  border-color: rgba(135, 177, 224, 0.24);
  background:
    linear-gradient(135deg, rgba(37, 79, 121, 0.34), rgba(23, 31, 43, 0.54)),
    rgba(244, 239, 228, 0.05);
}

.gallery-video {
  margin-top: 0.75rem;
}

.gallery-video video {
  width: 100%;
  max-height: 40svh;
  background: #000;
}

.gallery-wa {
  display: block;
  margin-top: 1.25rem;
  text-align: center;
}

.mobile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.mobile-socials a {
  border: 1px solid rgba(244, 239, 228, 0.18);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
  color: rgba(244, 239, 228, 0.82);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(244, 239, 228, 0.06);
}

.floating-whatsapp {
  position: fixed;
  z-index: 120;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
}

.floating-scarcity {
  isolation: isolate;
  position: absolute;
  left: -4rem;
  bottom: calc(100% + 1.08rem);
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  border: 1px solid rgba(255, 176, 176, 0.78);
  border-radius: 999px;
  padding: 0.38rem 0.74rem;
  color: #fff5f5;
  font-size: 0.62rem;
  font-weight: 860;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(135deg, rgba(218, 41, 41, 0.78), rgba(170, 20, 20, 0.72));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 118, 118, 0.34),
    0 0 18px rgba(255, 76, 76, 0.44);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  pointer-events: none;
  z-index: 2;
}

.floating-scarcity::before {
  content: "";
  position: absolute;
  inset: -0.38rem;
  z-index: -2;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(235, 55, 55, 0.3), rgba(235, 55, 55, 0) 70%);
}

.floating-scarcity::after {
  content: "";
  position: absolute;
  inset: -0.14rem;
  z-index: -1;
  border-radius: 999px;
  border: 1px solid rgba(255, 222, 222, 0.32);
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 244, 244, 0.34), transparent 34%),
    rgba(32, 8, 8, 0.82);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(10, 12, 9, 0.15);
}

.floating-whatsapp a {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(10, 12, 9, 0.18),
    0 0 34px rgba(24, 230, 103, 0.42);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.floating-whatsapp a::before {
  content: "";
  position: absolute;
  inset: -0.52rem;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 236, 116, 0.34), rgba(31, 236, 116, 0) 68%);
  animation: whatsappGlow 2.4s ease-in-out infinite;
}

.floating-whatsapp a::after {
  content: "";
  position: absolute;
  inset: -0.2rem;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 228, 0.28);
  background:
    radial-gradient(circle at 38% 26%, rgba(244, 239, 228, 0.2), transparent 36%),
    rgba(10, 13, 9, 0.76);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(10, 12, 9, 0.18);
}

.floating-whatsapp a:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(18, 210, 87, 0.18);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.4),
    0 0 48px rgba(24, 230, 103, 0.58);
}

.floating-whatsapp:hover .floating-scarcity {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, rgba(226, 52, 52, 0.9), rgba(184, 25, 25, 0.82));
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 158, 158, 0.5),
    0 0 26px rgba(255, 86, 86, 0.56);
}

.floating-whatsapp:hover .floating-scarcity::before {
  background: radial-gradient(circle, rgba(235, 55, 55, 0.42), rgba(235, 55, 55, 0) 70%);
}

.floating-whatsapp img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.28));
}

@keyframes whatsappGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes railDrift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 0.35rem));
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .social-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0.95rem clamp(1.25rem, 5vw, 2.5rem);
    gap: 1rem;
  }

  .site-header .brand {
    width: auto;
    margin-left: 0;
    justify-self: start;
    justify-content: flex-start;
    transform: translate(var(--dbg-header-logo-x, 0px), var(--dbg-header-logo-y, 0px));
  }

  .site-header .brand::before {
    top: 55%;
    width: 118%;
    height: 3.35rem;
    opacity: 0.62;
    transform: translate(-50%, -46%);
  }

  .site-header.is-scrolled .brand::before {
    opacity: 0.86;
  }

  .brand-logo {
    height: var(--dbg-logo-height, clamp(48px, 7vw, 58px));
    max-width: var(--dbg-logo-maxw, min(48vw, 15rem));
    opacity: var(--dbg-logo-opacity, 1);
    transform: var(--dbg-logo-transform, none);
    filter: var(--dbg-logo-filter, var(--logo-shadow-soft, drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34))) var(--logo-shadow-outline, drop-shadow(0 1px 0 rgba(255, 255, 255, 0.12))) var(--logo-shadow-warm, drop-shadow(0 0 18px rgba(198, 165, 106, 0.16))));
  }

  .hero-top-copy .hero-kicker {
    left: 0;
  }

  .hero-content {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
  }

  .hero-content .hero-title {
    width: min(calc(100% - var(--hero-rail-width) - var(--hero-rail-offset) - 0.8rem), var(--dbg-hero-title-maxw, 46rem));
    margin-left: 0;
    font-size: var(--dbg-hero-title-size, inherit);
    line-height: var(--dbg-hero-title-lh, inherit);
    letter-spacing: var(--dbg-hero-title-ls, inherit);
    color: var(--dbg-hero-title-color, var(--ivory));
    transform: var(--dbg-hero-title-transform, none);
  }

  .menu-toggle {
    display: block;
  }

  .story-grid,
  .waitlist-shell {
    grid-template-columns: 1fr;
  }

  .story-grid {
    max-width: min(100%, 46rem);
    gap: clamp(1.6rem, 4vw, 2.5rem);
  }

  .story-copy {
    max-width: 44rem;
    margin-inline: auto;
    text-align: center;
  }

  .story-copy > .eyebrow,
  .section-heading > .eyebrow,
  .contact-card .eyebrow {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center;
    text-align: center;
  }

  .story-copy h2 {
    margin-inline: auto;
    text-align: center;
  }

  .story-manifesto {
    max-width: 42rem;
    margin-inline: auto;
  }

  .story-manifesto p {
    text-align: left;
  }

  .story-image {
    width: min(100%, 42rem);
    min-height: var(--story-debug-min-height, clamp(20rem, 52vw, 30rem));
    max-height: var(--story-debug-max-height, 34rem);
    margin-inline: auto;
    border-radius: var(--story-debug-radius, 10px);
  }

  .story-image img {
    border-radius: inherit;
    object-position: var(--story-debug-position, 50% 42%);
    scale: var(--story-debug-zoom, 1);
  }

  .lineage-bubbles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 44rem;
    gap: 1rem;
  }

  .lineage-bubble {
    aspect-ratio: 1;
    border-radius: 50%;
    min-height: 0;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  }

  .lineage-bubble:hover {
    transform: none;
  }

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

@media (max-width: 700px) {
  /* Ocultar el título del hero en móvil — el copy y el badge ya comunican el mensaje */
  .hero-content .hero-title { display: none !important; }

  .site-header {
    min-height: 72px;
    padding: 0.56rem 1rem;
  }

  .site-header .brand {
    max-width: calc(100vw - 5.8rem);
  }

  .site-header .brand::before {
    top: 54%;
    width: 116%;
    height: 2.75rem;
    opacity: 0.52;
  }

  .site-header.is-scrolled .brand::before {
    opacity: 0.78;
  }

  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5.25rem 1rem 5.35rem;
    gap: 0.85rem;
  }

  .brand-logo {
    height: var(--dbg-logo-height, 54px);
    max-width: min(var(--dbg-logo-maxw, 11rem), calc(100vw - 6rem));
  }

  .menu-toggle {
    width: 3rem;
  }

  .hero-content {
    width: 100%;
    padding-right: 0;
    margin-left: 0;
    max-width: 100%;
  }

  .hero-top-copy {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    gap: 0.62rem;
  }

  .hero-catalog-focus {
    width: 100%;
  }

  .hero-top-copy .hero-kicker {
    position: static;
    width: auto;
    margin: 0;
    opacity: var(--dbg-hero-kicker-opacity, 1);
    transform: var(--dbg-hero-kicker-transform, none);
  }

  .hero-top-copy .hero-kicker > span {
    max-width: 100%;
    padding: 0.32rem 0.58rem;
    font-size: var(--dbg-hero-kicker-size, 0.64rem);
    letter-spacing: var(--dbg-hero-kicker-ls, 0.05em);
    border-radius: var(--dbg-hero-kicker-radius, 999px);
    white-space: normal;
  }

  .hero-top-copy .hero-intro-badge {
    max-width: min(100%, var(--dbg-hero-badge-maxw, 100%));
    transform: var(--dbg-hero-badge-transform, none);
    padding: 0.7rem 0.78rem;
    border-radius: 8px;
  }

  .hero-top-copy .hero-intro-badge p {
    font-size: var(--dbg-hero-badge-size, 0.88rem);
    opacity: var(--dbg-hero-badge-opacity, 1);
    line-height: 1.48;
  }

  .hero-content .hero-title {
    display: var(--dbg-hero-title-display, none) !important;
    width: min(100%, var(--dbg-hero-title-maxw, 9.2ch));
    max-width: var(--dbg-hero-title-maxw, 9.2ch);
    margin-left: 0;
    text-align: left;
    font-size: var(--dbg-hero-title-size, clamp(2.95rem, 13vw, 3.45rem));
    line-height: var(--dbg-hero-title-lh, 0.98);
    letter-spacing: var(--dbg-hero-title-ls, 0);
    color: var(--dbg-hero-title-color, var(--ivory));
    transform: var(--dbg-hero-title-transform, none);
  }

  .hero-content .hero-title::after {
    width: 5.2rem;
    margin-top: 0.74rem;
  }

  .hero-content .hero-copy {
    width: auto;
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .hero-fallback {
    content: url("public/assets/sire-lineage.jpg");
    object-fit: cover;
    object-position: center 44%;
    transform: scale(1);
  }

  .hero-rail {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 9, 7, 0.9) 0%, rgba(8, 9, 7, 0.52) 58%, rgba(8, 9, 7, 0.2) 100%),
      linear-gradient(90deg, rgba(8, 9, 7, 0.42), transparent);
  }

  h1 {
    max-width: 9ch;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-actions {
    width: min(100%, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    margin-inline: auto;
  }

  .hero-actions .button {
    max-width: 100%;
    min-height: 3.05rem;
    padding: 0.78rem 1rem;
    font-size: 0.72rem;
  }

  .section-pad {
    padding: 4.6rem 1rem;
  }

  .story-image {
    order: 2;
    min-height: var(--story-debug-min-height, 24rem);
    max-height: var(--story-debug-max-height, 28rem);
  }

  .story-copy {
    order: 1;
  }

  .story-copy > .eyebrow,
  .section-heading > .eyebrow {
    margin-bottom: 0.72rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .story-copy h2 {
    max-width: 13ch;
    margin-bottom: 1.05rem;
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.04;
  }

  .story-manifesto {
    gap: 0.85rem;
  }

  .story-manifesto p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .catalog-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .waitlist-copy h2 {
    max-width: 11ch;
  }

  .waitlist-copy .waitlist-title {
    display: block;
    max-width: 12ch;
    padding-bottom: 0.64rem;
  }

  .waitlist-copy .waitlist-title::after {
    width: 7.8rem;
  }

  .waitlist-copy > p:not(.eyebrow) {
    padding-left: 0.85rem;
    line-height: 1.58;
  }

  .waitlist-copy > p.waitlist-lead {
    padding: 0.8rem 0.86rem 0.88rem;
    line-height: 1.62;
  }

  .waitlist-lead .lead-emphasis {
    margin-bottom: 0.32rem;
  }

  .quiet-list {
    gap: 0.62rem;
    margin-top: 1.45rem;
  }

  .quiet-list li {
    gap: 0.72rem;
    padding: 0.78rem;
  }

  .quiet-list .tier-mark {
    width: 2.1rem;
  }

  .quiet-list .tier-mark svg {
    width: 1.08rem;
    height: 1.08rem;
  }

  .quiet-list strong {
    font-size: 1.1rem;
  }

  .quiet-list p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .lineage-bubbles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 24rem;
    gap: 0.85rem;
  }

  .lineage-bubble {
    aspect-ratio: 1;
    border-radius: 50%;
  }

  .lineage-bubble div {
    padding: 0.9rem 0.7rem 1rem;
    text-align: center;
  }

  .lineage-bubble span {
    margin-bottom: 0.28rem;
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }

  .lineage-bubble h3 {
    margin-bottom: 0;
    font-size: clamp(1.05rem, 5.2vw, 1.45rem);
  }

  .lineage-bubble p,
  .bubble-cta {
    display: none;
  }

  .lineage-bubble::after {
    background: linear-gradient(180deg, transparent 35%, rgba(6, 7, 5, 0.88) 100%);
  }

  .gallery-panel {
    width: min(100%, 96vw);
    height: min(96svh, 920px);
    max-height: 96svh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.9rem;
  }

  .gallery-main {
    flex: 0 0 clamp(15.5rem, 42svh, 24rem);
    min-height: clamp(15.5rem, 42svh, 24rem);
    gap: 0.5rem;
  }

  .gallery-nav {
    width: 2.2rem;
    height: 2.2rem;
  }

  .gallery-thumbs {
    gap: 0.34rem;
    margin-top: 0.72rem;
  }

  .gallery-thumb {
    width: 3.4rem;
    height: 3.4rem;
  }

  .gallery-desc {
    display: block;
    max-width: 100%;
    margin: 0.6rem auto 0.5rem;
    padding: 0.58rem 0.68rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .gallery-price {
    margin-bottom: 0.62rem;
    padding: 0.34rem 0.66rem;
    font-size: 0.68rem;
  }

  .gallery-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.34rem;
    width: 100%;
    margin-top: 0.52rem;
  }

  .gallery-meta-pill {
    display: grid;
    justify-content: stretch;
    align-content: center;
    gap: 0.16rem;
    min-width: 0;
    min-height: 2.48rem;
    padding: 0.36rem 0.42rem;
  }

  .gallery-meta-pill small,
  .gallery-meta-pill strong {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .gallery-meta-pill small {
    font-size: 0.5rem;
  }

  .gallery-meta-pill strong {
    font-size: 0.6rem;
    line-height: 1.14;
  }

  .catalog-grid {
    gap: 1.4rem;
  }

  .product-card {
    grid-template-rows: auto auto auto auto 1fr auto;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: center;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
  }

  /* Premium mobile WhatsApp — dark disc behind icon for contrast on white
     backgrounds + soft green halo + brand-tinted shadow. No 1px borders. */
  .floating-whatsapp a {
    width: 3.4rem;
    border-radius: 50%;
    background: transparent;
    box-shadow:
      0 1px 1px rgba(255, 255, 255, 0.12),
      0 3px 10px rgba(2, 8, 5, 0.22),
      0 16px 30px rgba(2, 8, 5, 0.28);
    -webkit-tap-highlight-color: transparent;
  }

  /* Dark disc backdrop — gradient + inset highlights replace the harsh 1px
     stroke. Sits BEHIND the icon and provides contrast on light backgrounds.
     The icon (at 78%) sits on top, leaving a thin dark ring visible around
     its edges so the WhatsApp green pops on cream/white sections too. */
  .floating-whatsapp a::after {
    inset: -0.08rem;
    border: 0;
    background:
      radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.16), transparent 38%),
      linear-gradient(155deg, rgba(28, 34, 27, 0.98) 0%, rgba(7, 10, 7, 0.98) 76%);
    box-shadow:
      0 0 0 1px rgba(244, 239, 228, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -6px 12px rgba(0, 0, 0, 0.32);
  }

  /* Wider soft green halo with multi-stop falloff */
  .floating-whatsapp a::before {
    inset: -0.62rem;
    background:
      radial-gradient(circle,
        rgba(37, 211, 102, 0.24) 0%,
        rgba(37, 211, 102, 0.11) 36%,
        rgba(37, 211, 102, 0.025) 62%,
        rgba(37, 211, 102, 0) 78%);
    filter: blur(7px);
  }

  /* Icon sits at 78% — leaves a thin dark ring of the disc around its edge
     for separation from light backgrounds without looking like a heavy frame */
  .floating-whatsapp img {
    width: 80%;
    height: 80%;
    margin: auto;
    filter:
      drop-shadow(0 1px 1px rgba(0, 0, 0, 0.26))
      drop-shadow(0 5px 9px rgba(0, 0, 0, 0.18));
  }

  .floating-scarcity {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .floating-whatsapp a::before {
    animation: none;
  }

  .contact-actions .button-primary::before {
    animation: none;
  }

}

@media (min-width: 701px) and (max-width: 1060px) {
  #bloodlines .lineage-bubbles {
    display: grid !important;
    width: min(100%, 44rem);
    max-width: 44rem;
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-items: stretch;
  }

  #bloodlines .lineage-bubble {
    width: auto !important;
    height: auto !important;
  }
}
