/* =============================================================
   ABBYPIXEL — STYLES
   Premium design studio · Ghost-style Hero
   ============================================================= */

/* -------------- CSS Custom Properties -------------- */
:root {
  /* Base palette: white / beige / gold */
  --white: #ffffff;
  --cream: #efe6dc;
  --cream-soft: #f6efe2;
  --cream-deep: #e8d9bf;
  --beige: #d8c7a4;

  /* Gold */
  --gold: #b89968;
  --gold-soft: #d4b78a;
  --gold-deep: #9a7d52;
  --gold-glow: rgba(184, 153, 104, 0.35);

  /* Ink */
  --ink: #1a1614;
  --ink-soft: #4a3f38;
  --ink-mute: rgba(26, 22, 20, 0.55);
  --ink-faint: rgba(26, 22, 20, 0.35);
  --line: rgba(26, 22, 20, 0.10);
  --line-soft: rgba(26, 22, 20, 0.05);

  /* Status */
  --status-green: #4ea27a;

  /* Typography */
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-serif: "EB Garamond", "Times New Roman", serif;

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Header */
  --header-h: 76px;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-anticipate: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  scroll-behavior: auto;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: #fbf5ec;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: transparent; border: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--gold); color: var(--white); }

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

/* =============================================================
   HEADER
   floating (top): visible but NO pill/borders/background
   solid (scrolled): pill nav + backdrop blur + borders appear
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  pointer-events: auto;
  transition:
    padding 0.5s var(--ease-out),
    background-color 0.5s ease,
    backdrop-filter 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

/* Floating state — transparent header (no background here, gradient handled by ::before) */
.site-header[data-state="floating"] {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}
/* Long extended gradient that fades smoothly past the header — NO sharp edge */
.site-header[data-state="floating"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px; /* extends well past the header */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.46) 12%,
    rgba(0, 0, 0, 0.36) 24%,
    rgba(0, 0, 0, 0.26) 36%,
    rgba(0, 0, 0, 0.18) 48%,
    rgba(0, 0, 0, 0.12) 60%,
    rgba(0, 0, 0, 0.07) 72%,
    rgba(0, 0, 0, 0.03) 84%,
    rgba(0, 0, 0, 0.01) 92%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.5s ease;
}
/* Hide the gradient when scrolled (solid state) */
.site-header[data-state="solid"]::before {
  opacity: 0;
}

/* Solid state (scrolled past first section) — pill takes over */
.site-header[data-state="solid"] {
  padding: 12px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-lg);
  max-width: 1480px;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 8px 24px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: max-width 0.5s ease, background 0.5s ease,
              border-color 0.5s ease, box-shadow 0.5s ease,
              backdrop-filter 0.5s ease, padding 0.5s ease;
}
/* When SCROLLED (solid) — pill appears with frosted glass */
.site-header[data-state="solid"] .site-header__inner {
  max-width: 1200px;
  padding: 6px 18px 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 8px 32px -12px rgba(26, 22, 20, 0.18),
    0 1px 0 0 rgba(255, 255, 255, 0.6) inset;
}

/* Brand — white in floating (over image), dark when solid */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.40);
  transition: transform 0.4s var(--ease-out), color 0.4s ease, text-shadow 0.4s ease;
}
.site-header[data-state="solid"] .brand {
  color: var(--ink);
  text-shadow: none;
}
.brand:hover { transform: scale(1.02); }

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 0.6s var(--ease-out);
}
.brand:hover .brand__mark { transform: rotate(180deg); }
.brand__mark svg { width: 14px; height: 14px; }

.brand__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: inherit;
}

/* Logo imagen — adaptativo: blanco sobre fondo oscuro, negro sobre fondo claro */
.brand__logo {
  height: 28px;
  width: auto;
  max-width: none;
  flex: none; /* nunca se aplasta cuando la columna del grid colapsa */
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transition: filter 0.4s ease;
}
.site-header[data-state="solid"] .brand__logo,
.site-header[data-theme="light"][data-state="floating"] .brand__logo {
  filter: brightness(0);
}

/* Nav pill (center) — borders only on solid state */
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header[data-state="solid"] .nav-pill {
  border-color: var(--line);
  background: rgba(245, 236, 225, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-pill__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.40);
  transition: background 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.nav-pill__link:hover { background: rgba(255, 255, 255, 0.12); }
.nav-pill__link.is-active {
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(6px);
  color: #ffffff;
}
.site-header[data-state="solid"] .nav-pill__link {
  color: var(--ink);
  text-shadow: none;
}
.site-header[data-state="solid"] .nav-pill__link:hover {
  background: rgba(26, 22, 20, 0.06);
}
.site-header[data-state="solid"] .nav-pill__link.is-active {
  background: var(--ink);
  color: var(--cream);
}

.nav-pill__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}
.nav-pill__link.is-active .nav-pill__dot { opacity: 1; background: var(--gold); }

/* =============================================================
   FEATURED nav item — permanent gold emphasis (Quinceañeras)
   Marks the brand's strongest service so it stands out always,
   independent of which page the user is currently on.
   ============================================================= */
.nav-pill__link--featured {
  position: relative;
  color: var(--gold-soft);
  font-weight: 500;
}
.nav-pill__link--featured::before {
  content: '✦';
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 9px;
  color: var(--gold-soft);
  margin-right: 7px;
  vertical-align: 1px;
  opacity: 0.85;
}
.nav-pill__link--featured::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 183, 138, 0.55), transparent);
  pointer-events: none;
}
.nav-pill__link--featured:hover {
  color: #ffffff;
  background: rgba(184, 153, 104, 0.18);
}
.nav-pill__link--featured:hover::before { opacity: 1; color: #ffffff; }

/* Solid pill state — featured item shows gold-deep on white */
.site-header[data-state="solid"] .nav-pill__link--featured {
  color: var(--gold-deep);
}
.site-header[data-state="solid"] .nav-pill__link--featured::before {
  color: var(--gold);
  opacity: 1;
}
.site-header[data-state="solid"] .nav-pill__link--featured::after {
  background: linear-gradient(90deg, transparent, rgba(184, 153, 104, 0.70), transparent);
}
.site-header[data-state="solid"] .nav-pill__link--featured:hover {
  background: rgba(184, 153, 104, 0.15);
  color: var(--gold-deep);
}

/* Light theme override (subpages with cream backgrounds in floating state) */
.site-header[data-theme="light"][data-state="floating"] .nav-pill__link--featured {
  color: var(--gold-deep);
}
.site-header[data-theme="light"][data-state="floating"] .nav-pill__link--featured::before {
  color: var(--gold);
}
.site-header[data-theme="light"][data-state="floating"] .nav-pill__link--featured::after {
  background: linear-gradient(90deg, transparent, rgba(184, 153, 104, 0.55), transparent);
}
.site-header[data-theme="light"][data-state="floating"] .nav-pill__link--featured:hover {
  background: rgba(184, 153, 104, 0.12);
  color: var(--ink);
}

/* When featured + is-active (current page is Quinceañeras), keep the dot
   but the gold accent already conveys "featured" — they compose naturally. */
.nav-pill__link--featured.is-active .nav-pill__dot { background: var(--gold); }

/* Right side: status + CTA */
.site-header__right {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  justify-self: end;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.40);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.site-header[data-state="solid"] .status {
  color: var(--ink-soft);
  text-shadow: none;
}
.status__led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--status-green);
  box-shadow: 0 0 0 3px rgba(78, 162, 122, 0.18);
  animation: led-pulse 2.4s ease-in-out infinite;
}
@keyframes led-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(78, 162, 122, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(78, 162, 122, 0.08); }
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.30);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.4s ease, transform 0.3s var(--ease-out), text-shadow 0.3s ease;
}
.site-header[data-state="solid"] .cta-pill {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
  backdrop-filter: none;
  text-shadow: none;
}
.cta-pill:hover {
  background: var(--ink);
  color: var(--cream);
  transform: scale(1.02);
}

.cta-pill__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease;
}
.cta-pill__circle svg { width: 10px; height: 10px; }
.cta-pill:hover .cta-pill__circle {
  background: var(--gold);
  color: var(--ink);
}
.site-header[data-state="solid"] .cta-pill__circle {
  background: var(--ink);
  color: var(--cream);
}

/* =============================================================
   HEADER · light theme (subpages with cream/ivory background)
   Floating state on light pages → dark text, no dark gradient.
   ============================================================= */
.site-header[data-theme="light"][data-state="floating"]::before {
  display: none;
}
.site-header[data-theme="light"][data-state="floating"] .brand {
  color: var(--ink);
  text-shadow: none;
}
.site-header[data-theme="light"][data-state="floating"] .nav-pill {
  color: var(--ink-soft);
}
.site-header[data-theme="light"][data-state="floating"] .nav-pill__link {
  color: var(--ink-soft);
}
.site-header[data-theme="light"][data-state="floating"] .nav-pill__link:hover {
  background: rgba(26, 22, 20, 0.06);
  color: var(--ink);
}
.site-header[data-theme="light"][data-state="floating"] .nav-pill__link.is-active {
  color: var(--ink);
}
.site-header[data-theme="light"][data-state="floating"] .status {
  color: var(--ink-soft);
  text-shadow: none;
}
.site-header[data-theme="light"][data-state="floating"] .cta-pill {
  color: var(--ink);
  border-color: rgba(26, 22, 20, 0.25);
  background: rgba(255, 255, 255, 0.30);
  text-shadow: none;
}
.site-header[data-theme="light"][data-state="floating"] .cta-pill:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.site-header[data-theme="light"][data-state="floating"] .cta-pill__circle {
  background: var(--ink);
  color: var(--cream);
}

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Mask: extensive fade — starts early, ends before bottom — image disappears
     well before reaching About, no residual visibility */
  -webkit-mask-image: linear-gradient(180deg,
    #000 0%,
    #000 18%,
    rgba(0, 0, 0, 0.985) 25%,
    rgba(0, 0, 0, 0.95) 32%,
    rgba(0, 0, 0, 0.88) 39%,
    rgba(0, 0, 0, 0.78) 46%,
    rgba(0, 0, 0, 0.66) 52%,
    rgba(0, 0, 0, 0.52) 58%,
    rgba(0, 0, 0, 0.38) 64%,
    rgba(0, 0, 0, 0.24) 70%,
    rgba(0, 0, 0, 0.12) 76%,
    rgba(0, 0, 0, 0.04) 82%,
    rgba(0, 0, 0, 0) 88%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(180deg,
    #000 0%,
    #000 18%,
    rgba(0, 0, 0, 0.985) 25%,
    rgba(0, 0, 0, 0.95) 32%,
    rgba(0, 0, 0, 0.88) 39%,
    rgba(0, 0, 0, 0.78) 46%,
    rgba(0, 0, 0, 0.66) 52%,
    rgba(0, 0, 0, 0.52) 58%,
    rgba(0, 0, 0, 0.38) 64%,
    rgba(0, 0, 0, 0.24) 70%,
    rgba(0, 0, 0, 0.12) 76%,
    rgba(0, 0, 0, 0.04) 82%,
    rgba(0, 0, 0, 0) 88%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Full-width hero background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  /* cover = always fills viewport, no gaps ever */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  /* Scale slightly bigger than 1 so X/Y sliders have travel space */
  transform: translate3d(var(--tx, 0), var(--ty, 0), 0) scale(var(--scale, 1.15));
  transform-origin: center center;
  transition: transform 0.2s linear;
}
/* Cinematic vignette + gradient overlay for text legibility */
.hero__bg-vignette {
  position: absolute;
  inset: 0;
  background:
    /* top: slight darken for header contrast */
    linear-gradient(180deg,
      rgba(20, 14, 8, 0.18) 0%,
      rgba(20, 14, 8, 0.08) 20%,
      rgba(20, 14, 8, 0.04) 40%,
      transparent 70%
    ),
    /* edge vignette (lighter) */
    radial-gradient(
      ellipse 100% 90% at 50% 45%,
      transparent 0%,
      transparent 60%,
      rgba(20, 14, 8, 0.12) 92%,
      rgba(20, 14, 8, 0.20) 100%
    );
}
/* Cinematic film grain */
.hero__bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}


/* Content layer */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

/* ABBYPIXEL eyebrow — positioned high on the image (red-line area) */
.hero__eyebrow {
  position: absolute;
  top: 22vh;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: auto;
  white-space: nowrap;
}

/* Eyebrow ABBYPIXEL (Ghost-style dotted letters) */
.hero__eyebrow {
  user-select: none;
  margin-top: 4vh;
}
.eyebrow-big {
  display: inline-flex;
  gap: clamp(8px, 1.2vw, 22px);
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(28px, 4.2vw, 64px);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.45);
  text-stroke: 0.5px rgba(255, 255, 255, 0.45);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.eyebrow-big > span {
  display: inline-block;
  position: relative;
}
/* Dotted underline below each letter (Ghost-style accent) */
.eyebrow-big > span::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.eyebrow-big.is-revealed > span::after {
  opacity: 0.7;
}
/* Stagger dots reveal with delays */
.eyebrow-big.is-revealed > span:nth-child(1)::after { transition-delay: 1.0s; }
.eyebrow-big.is-revealed > span:nth-child(2)::after { transition-delay: 1.05s; }
.eyebrow-big.is-revealed > span:nth-child(3)::after { transition-delay: 1.10s; }
.eyebrow-big.is-revealed > span:nth-child(4)::after { transition-delay: 1.15s; }
.eyebrow-big.is-revealed > span:nth-child(5)::after { transition-delay: 1.20s; }
.eyebrow-big.is-revealed > span:nth-child(6)::after { transition-delay: 1.25s; }
.eyebrow-big.is-revealed > span:nth-child(7)::after { transition-delay: 1.30s; }
.eyebrow-big.is-revealed > span:nth-child(8)::after { transition-delay: 1.35s; }
.eyebrow-big.is-revealed > span:nth-child(9)::after { transition-delay: 1.40s; }

/* Taglines (left-aligned, modern bolder) */
.hero__taglines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.tagline--italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  font-size: clamp(17px, 1.6vw, 24px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

/* Main title — modern, bolder, vertical 3-line stack, left-aligned */
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(52px, 7.5vw, 120px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: #ffffff;
  text-shadow:
    0 2px 30px rgba(0, 0, 0, 0.55),
    0 1px 4px rgba(0, 0, 0, 0.35);
}
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero__title .word > span {
  display: inline-block;
  will-change: transform;
}
/* Accent word ("de") — italic serif gold, slightly smaller, indented */
.hero__title .word--accent {
  margin-left: clamp(28px, 4vw, 64px);
}
.hero__title .word--accent > span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  font-size: 0.72em;
  letter-spacing: 0;
}

/* Corner labels (over image — white) */
.hero__corner {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero__corner--bl { left: 56px; bottom: 32px; }
.hero__corner--br { right: 56px; bottom: 32px; }

.corner-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.2); }
}
.corner-arrow {
  display: inline-block;
  animation: arrow-bob 2.4s ease-in-out infinite;
}
@keyframes arrow-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
.corner-num {
  color: #ffffff;
  font-weight: 500;
}
.corner-num small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78em;
  margin-left: 2px;
}

/* Side labels (rotated) */
.hero__side {
  position: absolute;
  top: 50%;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  pointer-events: none;
}
.hero__side--left {
  left: 28px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}
.hero__side--right {
  right: 28px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

/* =============================================================
   ABOUT SECTION — "The AbbyPixel Experience"
   Overlapping with hero via negative margin + fade gradient
   ============================================================= */
.about {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: clamp(40px, 6vh, 80px) 0 clamp(80px, 14vh, 160px);
  overflow: hidden;
}
/* Subtle warm wash + center radial highlight */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 55%, rgba(184, 153, 104, 0.06), transparent 60%),
    linear-gradient(180deg, #fbf5ec 0%, #ffffff 60%, #fdfaf3 100%);
  pointer-events: none;
  z-index: 0;
}
/* Ensure content stays above the fade */
.about > .about__container { position: relative; z-index: 1; }
.about__container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header centered */
.about__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(60px, 9vh, 100px);
}
.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.about__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.about__title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.about__title-underline {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 22px;
  border-radius: 2px;
}
.about__lede {
  max-width: 560px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* 3-column layout: cards | image | cards */
.about__layout {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 380px) 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
.about__col {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}

/* Experience cards */
.exp-card {
  position: relative;
  padding: 22px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(8px);
  cursor: default;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.exp-card:hover {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 30px -12px rgba(184, 153, 104, 0.20);
}

.exp-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.exp-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(184, 153, 104, 0.10);
  border: 1px solid rgba(184, 153, 104, 0.25);
  color: var(--gold);
  transition: background 0.4s ease, transform 0.4s ease;
  flex-shrink: 0;
}
.exp-card:hover .exp-card__icon {
  background: rgba(184, 153, 104, 0.18);
}
.exp-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.exp-card__body {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.exp-card__num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.7;
}

/* Center image */
.about__center {
  position: relative;
}
.about__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(26, 22, 20, 0.25);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__photo-btn {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.about__photo-btn:hover { background: var(--gold); color: var(--white); }

/* Stats row */
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(60px, 8vh, 100px);
}
.stat-card {
  position: relative;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.stat-card:hover {
  box-shadow: 0 16px 36px -16px rgba(184, 153, 104, 0.25);
  transform: translateY(-3px);
}
.stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 153, 104, 0.12);
  color: var(--gold);
  margin-bottom: 14px;
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.stat-card__label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.stat-card__line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto;
}

/* CTA Banner */
.about__cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(40px, 6vh, 80px);
  padding: clamp(30px, 5vh, 48px) clamp(30px, 5vw, 60px);
  background: linear-gradient(135deg, #1a1614 0%, #2a241d 100%);
  border-radius: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about__cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184, 153, 104, 0.20), transparent 60%);
  pointer-events: none;
}
.cta-banner__text { position: relative; z-index: 1; }
.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 6px;
}
.cta-banner__title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}
.cta-banner__lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.cta-banner__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.cta-banner__btn:hover { background: var(--gold-soft); }

/* =============================================================
   WHY THEY CHOOSE US — Editorial split panels with quote
   ============================================================= */
.why {
  position: relative;
  background: #fdfaf3;
  padding: clamp(80px, 12vh, 140px) 0;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 25% 0%, rgba(212, 183, 138, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 75% 100%, rgba(184, 153, 104, 0.08), transparent 60%);
  pointer-events: none;
}
.why__container {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.why__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(60px, 10vh, 100px);
}
.why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.why__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 18ch;
}
.why__title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.why__lede {
  max-width: 580px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* 3-panel layout */
.why__panels {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px) 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

/* Side panels */
.why-panel {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.why-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(184, 153, 104, 0.18);
}
.why-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(184, 153, 104, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.why-panel:hover::after { opacity: 1; }

.why-panel--mom {
  background: linear-gradient(180deg, #fbf5ec 0%, #ffffff 100%);
}

.why-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184, 153, 104, 0.12);
  border: 1px solid rgba(184, 153, 104, 0.25);
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.why-panel__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-panel__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
}
.why-panel__title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* List of reasons */
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.why-list__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding: 4px 8px;
  border: 1px solid rgba(184, 153, 104, 0.3);
  border-radius: 999px;
  background: rgba(184, 153, 104, 0.06);
  white-space: nowrap;
  height: fit-content;
}
.why-list__item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 2px 0 4px;
}
.why-list__item p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* CENTER QUOTE — ROTATING TESTIMONIALS SLIDER */
.why-quote-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transform: none;
  transition: opacity 900ms cubic-bezier(.25, .4, .25, 1),
              transform 900ms cubic-bezier(.25, .4, .25, 1);
}
.why-quote-wrap.is-pre-enter {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
}
.why-quote-wrap.is-pre-enter.is-entered {
  opacity: 1;
  transform: none;
}
.why-quote-stage {
  position: relative;
  display: grid;
  /* All slides share the same grid cell so the stage auto-sizes to the tallest slide. */
}
.why-quote-stage > .why-quote {
  grid-area: 1 / 1;
}
.why-quote {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  background: linear-gradient(160deg, #1a1614 0%, #2a241d 100%);
  border-radius: 24px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  z-index: 1;
  transition: opacity 600ms cubic-bezier(.4, 0, .2, 1),
              transform 600ms cubic-bezier(.4, 0, .2, 1);
  will-change: opacity, transform;
}
.why-quote[data-active="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}
.why-quote::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.25), transparent 70%);
  pointer-events: none;
}
.why-quote__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 100px;
  line-height: 0.6;
  color: var(--gold-soft);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.why-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.why-quote__text em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}
.why-quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.why-quote__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  flex-shrink: 0;
}
.why-quote__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.why-quote__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.why-quote__deco {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(184, 153, 104, 0.20);
  border-radius: 50%;
  pointer-events: none;
}

/* Dots row */
.why-quote__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.why-quote__dot {
  appearance: none;
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 22, 20, 0.18);
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4, 0, .2, 1),
              width 240ms cubic-bezier(.4, 0, .2, 1),
              border-radius 240ms cubic-bezier(.4, 0, .2, 1),
              transform 240ms cubic-bezier(.4, 0, .2, 1);
}
.why-quote__dot:hover {
  background: rgba(26, 22, 20, 0.32);
}
.why-quote__dot[aria-selected="true"] {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.why-quote__dot:focus {
  outline: none;
}
.why-quote__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .why-quote {
    transition: opacity 0ms;
    transform: none !important;
  }
  .why-quote__dot {
    transition: none;
  }
}

/* Trust badges row */
.why__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 8px;
  margin-top: clamp(60px, 8vh, 80px);
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}
.trust-badge__sep {
  color: var(--line);
  font-weight: 700;
}

/* =============================================================
   PLANS TEASER — Editorial storytelling (cute, cautivadora)
   ============================================================= */
.plans-teaser {
  position: relative;
  background: linear-gradient(180deg, #fdfaf3 0%, #fbf5ec 60%, #fdfaf3 100%);
  padding: clamp(90px, 14vh, 160px) 0;
  overflow: hidden;
}
/* decorative warm glow */
.plans-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 50% 50%, rgba(212, 183, 138, 0.18), transparent 70%),
    radial-gradient(ellipse 30% 25% at 15% 20%, rgba(184, 153, 104, 0.08), transparent 70%),
    radial-gradient(ellipse 30% 25% at 85% 80%, rgba(184, 153, 104, 0.08), transparent 70%);
  pointer-events: none;
}
/* subtle dot pattern */
.plans-teaser::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(184, 153, 104, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.6;
  pointer-events: none;
}

.plans-teaser__container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
.plans-teaser__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-teaser__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.plans-teaser__ornament {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  opacity: 0.7;
}

.plans-teaser__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 14ch;
}
.plans-teaser__title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.plans-teaser__lede {
  max-width: 580px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(15px, 1.25vw, 17.5px);
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.plans-teaser__lede strong {
  font-weight: 600;
  color: var(--ink);
}

.plans-teaser__pills {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(184, 153, 104, 0.20);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.plans-teaser__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.plans-teaser__pill svg { color: var(--gold); flex-shrink: 0; }
.plans-teaser__sep {
  color: var(--line);
  font-size: 14px;
}

.plans-teaser__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), background 0.4s ease;
  box-shadow: 0 12px 32px -10px rgba(26, 22, 20, 0.30);
}
.plans-teaser__btn:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 20px 40px -10px rgba(184, 153, 104, 0.50);
}
.plans-teaser__btn-star {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.6s var(--ease-out), color 0.4s ease;
}
.plans-teaser__btn:hover .plans-teaser__btn-star {
  transform: rotate(180deg) scale(1.2);
  color: var(--ink);
}

/* Responsive */
@media (max-width: 640px) {
  .plans-teaser__container { padding: 0 24px; }
  .plans-teaser__pills {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 20px;
  }
  .plans-teaser__sep { display: none; }
  .plans-teaser__btn { padding: 16px 28px; font-size: 13.5px; }
}

/* =============================================================
   TESTIMONIOS — Polaroid Grid (home)
   ============================================================= */
.testimonios {
  padding: clamp(96px, 14vh, 160px) 0;
  background: #f5ecde;
  position: relative;
  overflow: hidden;
}
.testimonios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 153, 104, 0.30), transparent);
}
.testimonios__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.testimonios__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(56px, 8vh, 88px);
}
.testimonios__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #9a7d52;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.testimonios__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b89968;
  box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.20);
  animation: testimonios-pulse 2.4s ease-in-out infinite;
}
@keyframes testimonios-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.15); }
}
.testimonios__title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1a1614;
  margin: 0 0 22px;
}
.testimonios__title .italic {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: #b89968;
}
.testimonios__lede {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.60;
  color: #4a3f38;
  margin: 0;
}
.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  justify-items: center;
  padding: 24px 0;
}

/* — Polaroid card — */
.polaroid {
  background: #ffffff;
  padding: 20px 20px 32px;
  width: 100%;
  max-width: 340px;
  transform: rotate(var(--tilt, 0deg));
  transition: transform .4s cubic-bezier(.25,.4,.25,1), box-shadow .4s ease;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 12px 32px -12px rgba(26, 22, 20, 0.20),
    0 28px 70px -32px rgba(26, 22, 20, 0.28);
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 18px 44px -10px rgba(26, 22, 20, 0.26),
    0 36px 90px -28px rgba(26, 22, 20, 0.38);
}
.polaroid__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #efe6dc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.polaroid__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
}
.polaroid__initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px -8px rgba(184, 153, 104, 0.55);
  position: relative;
  z-index: 1;
}
.polaroid__quote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.50;
  color: #1a1614;
  margin: 0 0 16px;
  min-height: 100px;
}
.polaroid__quote em {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #b89968;
}
.polaroid__author {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: #9a7d52;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .testimonios__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .polaroid:nth-child(3) { grid-column: 1 / -1; max-width: 380px; }
}
@media (max-width: 640px) {
  .testimonios { padding: 80px 0; }
  .testimonios__container { padding: 0 20px; }
  .testimonios__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .polaroid {
    max-width: 320px;
    transform: rotate(0deg);
  }
  .polaroid:nth-child(3) { grid-column: auto; }
}

/* =============================================================
   CTA FINAL — Closing section
   ============================================================= */
.cta-final {
  position: relative;
  background: #1a1614;
  padding: clamp(100px, 16vh, 180px) 0;
  overflow: hidden;
  color: #fff;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 20%, rgba(184, 153, 104, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 90%, rgba(184, 153, 104, 0.14), transparent 60%);
  pointer-events: none;
}
.cta-final::after {
  /* Subtle grid pattern */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 153, 104, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 153, 104, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
}
.cta-final__container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.cta-final__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-final__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(184, 153, 104, 0.30);
  border-radius: 999px;
  background: rgba(184, 153, 104, 0.08);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.cta-final__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--status-green);
  box-shadow: 0 0 0 3px rgba(78, 162, 122, 0.20);
  animation: led-pulse 2.4s ease-in-out infinite;
}
.cta-final__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: #fff;
  margin: 0 0 24px;
}
.cta-final__title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}
.cta-final__lede {
  max-width: 460px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 40px;
}
.cta-final__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.cta-final__btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.cta-final__btn--primary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.cta-final__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.30);
}
.cta-final__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.50);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
  .about__container { padding: 0 24px; }
  .about__layout { grid-template-columns: 1fr; }
  .about__center { order: -1; max-width: 420px; margin: 0 auto; }
  .about__col { display: grid; grid-template-columns: repeat(2, 1fr); }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .why__container { padding: 0 24px; }
  .why__panels { grid-template-columns: 1fr; gap: 24px; }
  .why-quote-wrap { order: 3; }
}
@media (max-width: 640px) {
  .about__col { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .about__cta-banner { flex-direction: column; text-align: center; }
  .why__badges { padding: 18px 24px; border-radius: 24px; }
  .cta-final__actions { flex-direction: column; width: 100%; }
  .cta-final__btn { width: 100%; justify-content: center; }
}

/* =============================================================
   IMAGE CONTROLS PANEL (interactive — bottom right)
   ============================================================= */
.img-controls {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  font-family: var(--font-mono);
  user-select: none;
}
.img-controls__toggle {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 14, 8, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.img-controls__toggle:hover { background: var(--gold); transform: scale(1.05); }
.img-controls__toggle span {
  width: 14px;
  height: 2px;
  background: #fff;
  position: relative;
  display: block;
}
.img-controls__toggle span::before,
.img-controls__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.img-controls__toggle span::before { top: -5px; }
.img-controls__toggle span::after { top: 5px; }

.img-controls__body {
  width: 290px;
  padding: 18px;
  background: rgba(20, 14, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
}
.img-controls[data-open="false"] .img-controls__body {
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  pointer-events: none;
}

.img-controls__title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.img-controls__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}
.img-controls__row > span { display: flex; justify-content: space-between; align-items: center; }
.img-controls__row strong {
  color: var(--gold-soft);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.img-controls__row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.img-controls__row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.img-controls__row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.img-controls__row input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }
.img-controls__row input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.img-controls__actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.img-controls__btn {
  flex: 1;
  padding: 9px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.img-controls__btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.4);
}
.img-controls__btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
}
.img-controls__btn--primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.img-controls__btn.is-copied {
  background: #4ea27a;
  border-color: #4ea27a;
  color: #fff;
}

.img-controls__hint {
  margin-top: 12px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}
.img-controls__hint kbd {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .site-header__inner { padding: 0 28px; }
  .nav-pill { display: none; }
  .site-header__right { gap: 14px; }
  .hero__content { padding: 0 28px; }
  .hero__corner--bl { left: 24px; bottom: 20px; }
  .hero__corner--br { right: 24px; bottom: 20px; }
  .hero__side { display: none; }
}

@media (max-width: 760px) {
  .site-header__inner { grid-template-columns: 1fr auto; }
  .status { display: none; }
  .brand__name { font-size: 19px; }
  .hero__eyebrow { margin-top: 14vh; }
  .eyebrow-big { gap: 6px; letter-spacing: 0.02em; }
  .hero__crown { width: 95vw; }
  .hero__title { gap: 8px; }
  .tagline { font-size: 14px; }
  .hero__corner { font-size: 9px; letter-spacing: 0.2em; }
}

/* =============================================================
   SITE FOOTER — Brand · Contacto · Social · Estudio
   ============================================================= */
.site-footer {
  background: #14110f;
  color: #efe6dc;
  padding: clamp(80px, 12vh, 130px) 0 40px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 153, 104, 0.30), transparent);
}
.site-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(239, 230, 220, 0.08);
}

/* — Brand column — */
.footer-col--brand { max-width: 380px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(184, 153, 104, 0.15);
  border: 1px solid rgba(184, 153, 104, 0.40);
  color: #b89968;
}
.footer-brand__mark svg { width: 22px; height: 22px; }
.footer-brand__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.footer-brand__desc {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(239, 230, 220, 0.62);
  margin: 0 0 24px;
}
.footer-brand__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: rgba(184, 153, 104, 0.10);
  border: 1px solid rgba(184, 153, 104, 0.25);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: #d4b78a;
  text-transform: uppercase;
}
.footer-brand__led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b89968;
  box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.20);
  animation: footer-pulse 2.4s ease-in-out infinite;
}
@keyframes footer-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.15); }
}

/* — Column titles + list — */
.footer-col__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #b89968;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  color: rgba(239, 230, 220, 0.85);
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}
.footer-link:hover {
  color: #ffffff;
  transform: translateX(2px);
}
.footer-link:hover .footer-link__icon {
  background: rgba(184, 153, 104, 0.28);
  border-color: rgba(184, 153, 104, 0.55);
  color: #d4b78a;
}
.footer-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(184, 153, 104, 0.10);
  border: 1px solid rgba(184, 153, 104, 0.25);
  color: #b89968;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
  flex-shrink: 0;
}
.footer-link__suffix {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.10em;
  color: #b89968;
  text-transform: uppercase;
  margin-left: 4px;
  opacity: 0.65;
}

/* — Address column — */
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-address__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-address__row .footer-link__icon { margin-top: 1px; }
.footer-address p {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(239, 230, 220, 0.85);
  margin: 0;
}
.footer-address__hours {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(239, 230, 220, 0.55);
}

/* — Bottom strip — */
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(239, 230, 220, 0.50);
  text-transform: uppercase;
}
.site-footer__heart {
  color: #b89968;
  font-size: 13px;
}

/* — Responsive — */
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }
  .footer-col--brand { grid-column: 1 / -1; max-width: 560px; }
}
@media (max-width: 640px) {
  .site-footer { padding: 64px 0 28px; }
  .site-footer__container { padding: 0 24px; }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 24px;
  }
}

/* =============================================================
   NAV PILL · DROPDOWN ("Sesiones de fotos")
   Hover + click hybrid. Single visual state shared by both paths.
   ============================================================= */

/* Group is the positioning anchor */
.nav-pill__group {
  position: relative;
  display: inline-flex;
}

/* Trigger looks identical to other pill links — let the
   .nav-pill__link class on the same element provide font + color.
   Do NOT set `color` or shorthand `font` here (those would override
   the floating/solid theme colors and the mono caps typography). */
.nav-pill__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.nav-pill__caret {
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.65;
}

/* HOVER (desktop pointer) and .is-open (click/kbd) share the same open visuals. */
@media (hover: hover) and (pointer: fine) {
  .nav-pill__group:hover .nav-pill__caret {
    transform: rotate(180deg);
  }
}
.nav-pill__group.is-open .nav-pill__caret {
  transform: rotate(180deg);
}

/* Panel — closed state (default) */
.nav-pill__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 280px;
  padding: 10px;
  border-radius: 18px;

  /* AbbyPixel frosted glass */
  background: color-mix(in oklab, var(--cream-soft, #f6efe2) 82%, transparent);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid color-mix(in oklab, var(--ink, #1a1614) 8%, transparent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 20px 50px -20px rgba(40, 20, 10, 0.28),
    0 8px 20px -10px rgba(40, 20, 10, 0.15);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 220ms;
  z-index: 30;
}

/* Invisible bridge — prevents hover-gap flicker between trigger and panel */
.nav-pill__dropdown::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto 0;
  height: 14px;
}

/* THE KEY RULE: hover OR is-open opens the panel. */
@media (hover: hover) and (pointer: fine) {
  .nav-pill__group:hover .nav-pill__dropdown,
  .nav-pill__group:focus-within .nav-pill__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition:
      opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s;
  }
}

/* Click / touch / keyboard path — same visual result */
.nav-pill__group.is-open .nav-pill__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

/* Dropdown items */
.nav-pill__dropdown-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink, #1a1614);
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  transition: background 160ms ease, transform 160ms ease;
}
.nav-pill__dropdown-link:hover,
.nav-pill__dropdown-link:focus-visible {
  background: color-mix(in oklab, var(--gold, #b89968) 14%, transparent);
  transform: translateX(2px);
  outline: none;
}
.nav-pill__dropdown-label {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-pill__dropdown-meta {
  font-size: 11px;
  opacity: 0.6;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* Active item inside dropdown */
.nav-pill__dropdown-link.is-active,
.nav-pill__menuLink--active {
  background: color-mix(in oklab, var(--gold, #b89968) 18%, transparent);
}
.nav-pill__dropdown-link.is-active .nav-pill__dropdown-label,
.nav-pill__menuLink--active .nav-pill__dropdown-label {
  color: var(--ink);
}

/* Floating state — trigger inherits color from the .nav-pill__link
   class on the same element (white on dark hero). No override needed. */

/* On dark floating header, give the dropdown a slightly darker frosted glass for cohesion */
.site-header[data-state="floating"]:not([data-theme="light"]) .nav-pill__dropdown {
  background: color-mix(in oklab, #1a1614 60%, transparent);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 20px 50px -20px rgba(0, 0, 0, 0.6),
    0 8px 20px -10px rgba(0, 0, 0, 0.4);
}
.site-header[data-state="floating"]:not([data-theme="light"]) .nav-pill__dropdown-link {
  color: rgba(255, 255, 255, 0.92);
}
.site-header[data-state="floating"]:not([data-theme="light"]) .nav-pill__dropdown-label {
  color: #fff;
}
.site-header[data-state="floating"]:not([data-theme="light"]) .nav-pill__dropdown-link:hover,
.site-header[data-state="floating"]:not([data-theme="light"]) .nav-pill__dropdown-link:focus-visible {
  background: rgba(255, 255, 255, 0.10);
}
.site-header[data-state="floating"]:not([data-theme="light"]) .nav-pill__dropdown-link.is-active,
.site-header[data-state="floating"]:not([data-theme="light"]) .nav-pill__menuLink--active {
  background: rgba(184, 153, 104, 0.32);
}

/* MOBILE: hover disabled, click-only — panel goes inline as an accordion */
@media (max-width: 768px) {
  .nav-pill__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    padding: 4px 0 0 16px;
    min-width: 0;
  }
  .nav-pill__group.is-open .nav-pill__dropdown {
    transform: none;
  }
  .nav-pill__dropdown::before { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nav-pill__dropdown,
  .nav-pill__caret {
    transition: opacity 120ms linear;
    transform: none !important;
  }
}

/* =============================================================
   TESTIMONIOS — fotos reales de clientas
   ============================================================= */
.polaroid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.polaroid:hover .polaroid__photo img { transform: scale(1.04); }
img.why-quote__avatar {
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid rgba(212, 183, 138, 0.55);
}

/* =============================================================
   LUXURY POLISH — micro-interacciones premium
   ============================================================= */
:root { --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1); }

::selection { background: rgba(184, 153, 104, 0.30); color: #1a1614; }

a:focus-visible, button:focus-visible {
  outline: 2px solid #b89968;
  outline-offset: 3px;
  border-radius: 4px;
}

/* CTA pill — barrido de luz dorado al hover */
.cta-pill { position: relative; overflow: hidden; }
.cta-pill::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-luxe);
  pointer-events: none;
}
.cta-pill:hover::after { left: 130%; }

/* Links del footer — subrayado dorado animado */
.footer-link { position: relative; }
.footer-link > span:last-of-type { position: relative; }
.footer-link:hover > .footer-link__icon { color: #b89968; transition: color 0.3s ease; }

/* Cards — elevación suave universal */
.exp-card, .stat-card, .polaroid, .why-panel {
  transition: transform 0.5s var(--ease-luxe), box-shadow 0.5s var(--ease-luxe), border-color 0.4s ease;
}
.polaroid:hover {
  box-shadow: 0 30px 60px -24px rgba(26, 22, 20, 0.28);
}

/* Imagen del about — zoom sutil al hover */
.about__photo { overflow: hidden; }
.about__photo img { transition: transform 1.2s var(--ease-luxe); }
.about__photo:hover img { transform: scale(1.035); }

/* Nav links — micro lift */
.nav-pill__link { transition: color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-luxe); }
.nav-pill__link:hover { transform: translateY(-1px); }

/* Reduce motion — respeto por accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .cta-pill::after { display: none; }
  .polaroid__photo img, .about__photo img { transition: none; }
}
