/* ═══════════════════════════════════════════
   FINUCROCHET — Estilos principales
═══════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
  --ink:       #1C1008;
  --ink-2:     #2E1A0E;
  --brown:     #5C3A2E;
  --sienna:    #8B4F3F;
  --rose:      #C4847A;
  --blush:     #E8C4B8;
  --petal:     #F2DDD5;
  --cream:     #FAF5EE;
  --warm:      #FFF9F3;
  --gold:      #C9A055;
  --gold-lt:   #E8D4A8;
  --sand:      #EDE0CE;

  --f-display: 'Italiana', serif;
  --f-serif:   'IM Fell English', serif;
  --f-script:  'Caveat', cursive;
  --f-body:    'Jost', sans-serif;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Custom cursor (solo desktop con clase activa en body) ── */
@media (hover: hover) and (pointer: fine) {
  body.cursor-on { cursor: none; }
  body:not(.cursor-on) #cursor,
  body:not(.cursor-on) #cursor-ring { display: none; }
}
body:not(.cursor-on) #cursor,
body:not(.cursor-on) #cursor-ring { display: none; }

/* Toggle del cursor */
.cursor-toggle {
  display: none;
  position: fixed; bottom: 2rem; right: 5.5rem; z-index: 999;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(250,245,238,0.85);
  border: 1px solid rgba(196,132,122,0.3);
  color: var(--rose);
  cursor: pointer; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
  appearance: none; -webkit-appearance: none;
}
.cursor-toggle:hover { background: white; transform: scale(1.08); border-color: var(--rose); }
.cursor-toggle .icon { width: 18px; height: 18px; }
body.cursor-on .cursor-toggle { color: var(--gold); }
@media (hover: hover) and (pointer: fine) {
  .cursor-toggle { display: flex; }
}
#cursor {
  position: fixed; z-index: 99999; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rose);
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
  mix-blend-mode: multiply;
}
#cursor-ring {
  position: fixed; z-index: 99998; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(196,132,122,0.5);
  transform: translate(-50%, -50%);
  transition: all .5s var(--ease);
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 20px; height: 20px; background: var(--gold); }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); opacity: .4; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }

/* ── Focus visible para accesibilidad ── */
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Iconos SVG ── */
.icon {
  width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em;
  fill: currentColor; flex-shrink: 0;
}
.icon-lg { width: 1.4em; height: 1.4em; }
.icon-xl { width: 2.2em; height: 2.2em; vertical-align: middle; }

/* ─────────────────────────────────────────
   LOADING SCREEN
───────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  transition: opacity .8s var(--ease), visibility .8s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--f-display);
  font-size: 4rem; color: var(--cream);
  letter-spacing: 0.05em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-logo span { color: var(--rose); }
.loader-bar {
  width: 200px; height: 1px; background: rgba(255,255,255,0.15);
  border-radius: 1px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 1px; width: 0;
  animation: loaderFill 1.8s var(--ease) forwards;
}
.loader-text {
  font-family: var(--f-body);
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: loaderFade 1.8s ease forwards;
}
@keyframes loaderPulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
@keyframes loaderFill { to { width: 100%; } }
@keyframes loaderFade { 0%{opacity:0} 50%{opacity:1} 100%{opacity:0.35} }

/* ─────────────────────────────────────────
   NAV (selector con ID para no afectar otros <nav> de la página)
───────────────────────────────────────── */
#nav {
  position: fixed; top: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: min(1200px, calc(100vw - 3rem));
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(250,245,238,0.5);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 4px 40px rgba(92,58,46,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  transition: all .5s var(--ease);
}
#nav.solid {
  background: rgba(250,245,238,0.92);
  box-shadow: 0 8px 50px rgba(92,58,46,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}
.nav-brand {
  font-family: var(--f-display);
  font-size: 1.5rem; color: var(--ink-2);
  text-decoration: none; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-brand img { height: 30px; width: auto; object-fit: contain; }
.nav-brand span { color: var(--rose); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--brown); transition: color .3s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 1px;
  background: var(--rose); transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-wa {
  background: var(--rose); color: white !important;
  padding: 0.6rem 1.4rem; border-radius: 50px;
  font-weight: 500 !important; transition: all .3s !important;
}
.nav-wa::after { display: none !important; }
.nav-wa:hover { background: var(--sienna) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,132,122,0.4); }
.nav-burger {
  display: none; flex-direction: column; gap: 4px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-burger span { width: 20px; height: 1.5px; background: var(--ink-2); display: block; transition: all .3s; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: -5%; z-index: 0;
  will-change: transform;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 110%; object-fit: cover; object-position: center 30%;
  opacity: 0; transition: opacity 1.6s var(--ease);
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  animation: slowZoom 16s ease-out forwards;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,16,8,0.85) 0%,
    rgba(28,16,8,0.4) 40%,
    rgba(28,16,8,0.15) 70%,
    rgba(28,16,8,0.05) 100%
  );
}
@keyframes slowZoom { from{transform:scale(1.08)} to{transform:scale(1)} }

.hero-deco-letter {
  position: absolute; right: 5vw; top: 15%;
  font-family: var(--f-display);
  font-size: min(40vw, 500px);
  line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  pointer-events: none; user-select: none;
  animation: heroLetterIn 1.6s var(--ease) 0.5s both;
}
@keyframes heroLetterIn { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }

.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 min(8vw, 8rem) 6rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: flex-end; gap: 4rem;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  animation: heroIn 1s var(--ease) .4s both;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--rose); }
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(4.5rem, 9vw, 10rem);
  font-weight: 400; line-height: 0.92;
  color: white; letter-spacing: -0.01em;
  animation: heroIn 1s var(--ease) .55s both;
}
.hero-h1 em {
  font-family: var(--f-script);
  font-style: normal; font-weight: 700;
  color: var(--blush); display: block;
  font-size: 1.05em; letter-spacing: 0;
}
.hero-sub {
  margin-top: 2rem;
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.6); max-width: 440px;
  animation: heroIn 1s var(--ease) .7s both;
}
.hero-ctas {
  margin-top: 3rem; display: flex; gap: 1.2rem; flex-wrap: wrap;
  animation: heroIn 1s var(--ease) .85s both;
}
.btn-fill {
  padding: 1rem 2.5rem; border-radius: 50px;
  background: var(--rose); color: white;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all .4s var(--ease);
  box-shadow: 0 8px 30px rgba(196,132,122,0.4);
}
.btn-fill:hover { background: var(--sienna); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(196,132,122,0.5); }
.btn-line {
  padding: 1rem 2.5rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all .4s var(--ease);
  backdrop-filter: blur(8px);
}
.btn-line:hover { border-color: rgba(255,255,255,0.7); color: white; transform: translateY(-4px); }

.hero-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 1rem;
  animation: heroIn 1s var(--ease) 1s both;
}
.hero-pill {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 1.2rem 1.8rem;
  display: flex; align-items: center; gap: 1.2rem;
  transition: all .4s var(--ease);
  white-space: nowrap;
}
.hero-pill:hover { transform: translateX(-6px); background: rgba(255,255,255,0.15); }
.hero-pill-icon { color: var(--blush); }
.hero-pill-val {
  font-family: var(--f-display); font-size: 1.6rem; color: white; line-height: 1;
}
.hero-pill-val em { font-family: var(--f-serif); font-style: italic; color: var(--blush); font-size: 0.9rem; }
.hero-pill-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 0.2rem;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  animation: heroIn 1s var(--ease) 1.3s both;
}
.scroll-hint span {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-mouse {
  width: 22px; height: 35px; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot {
  width: 3px; height: 8px; border-radius: 2px; background: var(--rose);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(14px);opacity:0} }
@keyframes heroIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ─────────────────────────────────────────
   MARQUEE
───────────────────────────────────────── */
.marquee {
  background: var(--ink);
  padding: 1rem 0; overflow: hidden; position: relative;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding: 0 2.5rem;
  font-family: var(--f-serif);
  font-size: 0.9rem; font-style: italic;
  color: rgba(232,196,184,0.55);
}
.marquee-item b { font-style: normal; color: var(--rose); font-family: var(--f-body); font-size: 0.5rem; }
.mq-sep { color: var(--rose); width: 0.5em; height: 0.5em; vertical-align: middle; opacity: 0.7; margin-left: 0.4rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────
   SECTION UTILS
───────────────────────────────────────── */
.s-tag {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--rose); display: block; margin-bottom: 0.9rem;
}
.s-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem,4vw,3.8rem); font-weight: 400;
  color: var(--ink-2); line-height: 1.1;
}
.s-title em { font-family: var(--f-serif); font-style: italic; color: var(--rose); }
.s-rule {
  width: 40px; height: 1.5px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin: 1.2rem auto 0; border-radius: 1px;
}
.s-rule.l { margin-left: 0; }
.reveal { opacity:0; transform:translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity:1; transform:translateY(0); }

/* ─────────────────────────────────────────
   FEATURED — Bento
───────────────────────────────────────── */
.featured {
  padding: 9rem 2rem;
  background: var(--warm);
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='40' viewBox='0 0 60 40'%3E%3Cg fill='none' stroke='%23C4847A' stroke-width='1' stroke-opacity='0.07' stroke-linecap='round'%3E%3Cpath d='M5 20 q5 -10 10 0 q5 10 10 0 q5 -10 10 0 q5 10 10 0 q5 -10 10 0'/%3E%3Cpath d='M5 30 q5 -10 10 0 q5 10 10 0 q5 -10 10 0 q5 10 10 0 q5 -10 10 0'/%3E%3C/g%3E%3C/svg%3E");
  background-color: var(--warm);
}
.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--blush) 50%, transparent);
}
.bento {
  max-width: 1280px; margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 360px);
  gap: 1rem;
}
.bento-cell {
  border-radius: 24px; overflow: hidden; position: relative;
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  background: none; border: none; padding: 0;
  font: inherit; color: inherit; text-align: left;
  appearance: none; -webkit-appearance: none;
}
.bento-cell:hover { transform: scale(1.02); box-shadow: 0 24px 70px rgba(28,16,8,0.18); z-index: 2; }
.bento-cell img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .8s var(--ease); }
.bento-cell:hover img { transform: scale(1.08); }
.bc-1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.bc-2 { grid-column: 6 / 9; grid-row: 1 / 2; }
.bc-3 { grid-column: 9 / 13; grid-row: 1 / 2; }
.bc-4 { grid-column: 6 / 10; grid-row: 2 / 3; }
.bc-5 { grid-column: 10 / 13; grid-row: 2 / 3; }

.bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,16,8,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.bento-cell:hover .bento-overlay,
.bento-cell:focus-visible .bento-overlay { opacity: 1; }
.bento-cat {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 0.4rem;
}
.bento-name { font-family: var(--f-display); font-size: 1.3rem; color: white; line-height: 1.2; }
.bento-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rose); text-decoration: none; font-weight: 500;
  transition: gap .3s;
}
.bento-cta:hover { gap: 0.9rem; }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
  padding: 9rem 2rem; background: var(--cream);
  position: relative; overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C9A055' stroke-width='1' stroke-opacity='0.05' stroke-linecap='round'%3E%3Ccircle cx='20' cy='20' r='5'/%3E%3Ccircle cx='60' cy='20' r='5'/%3E%3Ccircle cx='20' cy='60' r='5'/%3E%3Ccircle cx='60' cy='60' r='5'/%3E%3Cpath d='M20 25 L20 55 M60 25 L60 55 M25 20 L55 20 M25 60 L55 60'/%3E%3C/g%3E%3C/svg%3E");
}
.about-bg-text {
  position: absolute; top: -3rem; left: -2rem;
  font-family: var(--f-script); font-size: 24rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(196,132,122,0.08);
  pointer-events: none; user-select: none; line-height: 1; white-space: nowrap;
}
.about-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 55% 1fr; gap: 6rem; align-items: center;
  position: relative;
}
.about-visual { position: relative; }
.about-main-img {
  border-radius: 40px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(28,16,8,0.2);
  aspect-ratio: 4/5;
}
.about-main-img img { width:100%; height:100%; object-fit:cover; }
.about-stats {
  position: absolute; bottom: -2rem; right: -3rem;
  background: var(--ink-2); color: white;
  border-radius: 24px; padding: 1.8rem 1.6rem;
  display: grid; grid-template-columns: repeat(3, auto); gap: 1.5rem;
  box-shadow: 0 20px 60px rgba(28,16,8,0.3);
}
.about-stats .stat { text-align: center; min-width: 70px; }
.stat-num {
  font-family: var(--f-display); font-size: 2.4rem; color: var(--rose);
  line-height: 1; margin-bottom: 0.4rem; font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); line-height: 1.4; }
.about-mini-img {
  position: absolute; top: 3rem; right: -4rem;
  width: 160px; height: 200px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 50px rgba(28,16,8,0.2);
  border: 4px solid var(--warm);
}
.about-mini-img img { width:100%; height:100%; object-fit:cover; }

.about-quote {
  font-family: var(--f-script); font-size: 2rem; font-weight: 500;
  color: var(--rose); line-height: 1.4;
  padding-left: 1.5rem; border-left: 2px solid var(--blush);
  margin: 2rem 0;
}
.about-p { font-size: 1rem; font-weight: 300; color: var(--brown); line-height: 1.9; margin-bottom: 1rem; }
.about-pills {
  display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.5rem;
  list-style: none;
}
.about-pill {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.2rem; border-radius: 50px;
  border: 1px solid var(--sand);
  background: var(--warm); font-size: 0.8rem;
  color: var(--brown); transition: all .3s var(--ease);
}
.about-pill:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   BEHIND THE SCENES
───────────────────────────────────────── */
.bts {
  padding: 9rem 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm) 100%);
  position: relative; overflow: hidden;
}
.bts-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
  align-items: center;
}
.bts-text { max-width: 460px; }
.bts-text .s-title { text-align: left; font-size: clamp(2rem, 3.5vw, 3rem); }
.bts-p {
  font-size: 1rem; font-weight: 300; color: var(--brown);
  line-height: 1.85; margin: 1.5rem 0 2.5rem;
}
.bts-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-color: var(--rose); color: var(--rose);
}
.bts-cta:hover { border-color: var(--sienna); color: var(--sienna); }

.bts-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
  position: relative;
}
.bts-tile {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(28,16,8,0.15);
  transition: transform .6s var(--ease);
}
.bts-tile:hover { transform: translateY(-6px); }
.bts-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bts-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.bts-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.bts-3 { grid-column: 2 / 3; grid-row: 2 / 3; }

@media(max-width:900px) {
  .bts-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bts-mosaic { grid-template-rows: 180px 180px; }
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery { padding: 9rem 0; background: var(--ink); position: relative; overflow: hidden; }
.gallery::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4847A' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 min(8vw, 8rem); margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem;
}
.gallery-header .s-tag { color: var(--gold-lt); }
.gallery-header .s-title { color: white; }
.gallery-header .s-title em { color: var(--gold-lt); }

.gal-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.gf {
  padding: 0.5rem 1.2rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all .3s;
  font-family: var(--f-body); font-weight: 500;
}
.gf.on, .gf:hover { background: var(--rose); border-color: var(--rose); color: white; }

/* Masonry (CSS columns para Pinterest-like) */
.masonry {
  column-count: 4; column-gap: 1.2rem;
  padding: 0 min(8vw, 8rem);
  max-height: 1500px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  transition: max-height .8s var(--ease), -webkit-mask-image .4s, mask-image .4s;
}
.masonry.expanded {
  max-height: none;
  -webkit-mask-image: none; mask-image: none;
}
.m-card {
  break-inside: avoid; margin-bottom: 1.2rem;
  border-radius: 20px; overflow: hidden;
  cursor: pointer; position: relative;
  background: none; border: none; padding: 0;
  font: inherit; color: inherit; text-align: left;
  appearance: none; -webkit-appearance: none;
  display: block; width: 100%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  opacity: 1;
}
.m-card.is-hidden { display: none; }
.m-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.m-card img {
  width: 100%; height: auto; display: block;
  transition: transform .8s var(--ease);
}
.m-card:hover img { transform: scale(1.05); }
.m-info {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,16,8,.92) 0%, rgba(28,16,8,0) 55%);
  opacity: 0; transition: opacity .35s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem 1.6rem;
}
.m-card:hover .m-info,
.m-card:focus-visible .m-info { opacity: 1; }
.m-cat {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 0.3rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.m-name { font-family: var(--f-display); font-size: 1.2rem; color: white; line-height: 1.2; }
.m-btn { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); }

.gallery-foot {
  display: flex; justify-content: center; padding: 2.5rem min(8vw, 8rem) 0;
  position: relative; z-index: 2;
}

@media(max-width:1100px) { .masonry { column-count: 3; } }
@media(max-width:768px)  { .masonry { column-count: 2; padding: 0 1.5rem; max-height: 1000px; } }
@media(max-width:480px)  { .masonry { column-count: 1; } }

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process {
  padding: 9rem 2rem;
  background: linear-gradient(160deg, var(--ink-2) 0%, var(--brown) 100%);
  position: relative; overflow: hidden;
}
.process-word {
  position: absolute; bottom: -4rem; right: -1rem;
  font-family: var(--f-display); font-size: 20rem;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.025);
  pointer-events: none; user-select: none;
}
.process .s-tag { color: var(--gold-lt); }
.process .s-title { color: white; }
.process .s-title em { color: var(--gold-lt); }
.process-grid {
  max-width: 1200px; margin: 4rem auto 0;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem;
  position: relative;
  list-style: none;
}
.process-grid::before {
  content: ''; position: absolute; top: 46px; left: 15%; right: 15%;
  height: 1px; background: rgba(255,255,255,0.08);
}
.proc {
  border-radius: 24px; padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all .5s var(--ease);
}
.proc:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px);
  border-color: rgba(196,132,122,0.3);
}
.proc-n {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--f-display); font-size: 1.3rem; color: var(--gold-lt);
  transition: all .3s; position: relative; z-index: 1;
}
.proc:hover .proc-n { background: var(--rose); border-color: var(--rose); color: white; box-shadow: 0 0 30px rgba(196,132,122,0.4); }
.proc-icon { color: var(--gold-lt); margin-bottom: 1.2rem; opacity: 0.7; display: block; margin-left: auto; margin-right: auto; }
.proc-t { font-family: var(--f-display); font-size: 1.2rem; color: white; margin-bottom: 0.8rem; }
.proc-d { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.75; font-weight: 300; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq {
  padding: 9rem 2rem;
  background: var(--cream);
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C9A055' stroke-width='1' stroke-opacity='0.04' stroke-linecap='round'%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Cpath d='M32 40 L48 40 M40 32 L40 48'/%3E%3C/g%3E%3C/svg%3E");
}
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 4rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-q {
  background: white;
  border: 1px solid var(--sand);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-q[open] {
  border-color: var(--blush);
  box-shadow: 0 8px 30px rgba(196,132,122,0.12);
}
.faq-q summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.8rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--ink-2);
  transition: color .3s;
}
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary:hover { color: var(--rose); }
.faq-chev {
  color: var(--rose);
  transition: transform .35s var(--ease);
  width: 1em; height: 1em; flex-shrink: 0;
}
.faq-q[open] .faq-chev { transform: rotate(90deg); }
.faq-a {
  padding: 0 1.8rem 1.6rem;
  color: var(--brown);
  font-size: 0.96rem;
  line-height: 1.75;
  font-weight: 300;
}
.faq-a a { color: var(--rose); text-decoration: underline; text-underline-offset: 3px; }
.faq-a a:hover { color: var(--sienna); }

@media(max-width:600px) {
  .faq { padding: 6rem 1.5rem; }
  .faq-q summary { font-size: 1rem; padding: 1.2rem 1.4rem; }
  .faq-a { padding: 0 1.4rem 1.4rem; }
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
  padding: 9rem 2rem; background: var(--warm);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='40' viewBox='0 0 60 40'%3E%3Cg fill='none' stroke='%23C4847A' stroke-width='1' stroke-opacity='0.05' stroke-linecap='round'%3E%3Cpath d='M5 20 q5 -10 10 0 q5 10 10 0 q5 -10 10 0 q5 10 10 0 q5 -10 10 0'/%3E%3C/g%3E%3C/svg%3E");
}
.test-grid {
  max-width: 1200px; margin: 4rem auto 0;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.tcard {
  padding: 2.8rem; border-radius: 28px;
  background: var(--cream); border: 1px solid var(--sand);
  position: relative; overflow: hidden;
  transition: all .5s var(--ease);
}
.tcard::before {
  content: '\201C'; font-family: var(--f-display); font-size: 8rem;
  color: var(--petal); line-height: 1;
  position: absolute; top: 0; right: 1.5rem; pointer-events: none; opacity: 0.5;
}
.tcard:hover { transform: translateY(-8px); box-shadow: 0 24px 70px rgba(28,16,8,0.1); border-color: var(--blush); }
.tcard-stars { color: var(--gold); font-size: 0.85rem; line-height: 1; margin-bottom: 1.5rem; display: flex; gap: 2px; }
.tcard-text { font-family: var(--f-serif); font-size: 1.02rem; font-style: italic; color: var(--brown); line-height: 1.85; margin-bottom: 1.8rem; }
.tcard-author { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); font-weight: 500; }

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.cta {
  padding: 9rem 2rem; background: var(--cream);
  position: relative; overflow: hidden;
}
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.cta-h { font-family: var(--f-display); font-size: clamp(2rem,4vw,3.5rem); color: var(--ink-2); line-height: 1.15; }
.cta-h em { font-family: var(--f-serif); font-style: italic; color: var(--rose); }
.cta-p { font-size: 1rem; font-weight: 300; color: var(--brown); line-height: 1.85; margin: 1.5rem 0 2.5rem; }
.cta-form {
  background: white; border: 1px solid var(--sand);
  border-radius: 60px; padding: 0.5rem;
  display: flex; overflow: hidden;
  box-shadow: 0 4px 30px rgba(28,16,8,0.06);
  transition: box-shadow .3s;
}
.cta-form:focus-within { box-shadow: 0 4px 30px rgba(196,132,122,0.2); border-color: var(--blush); }
.cta-form input {
  flex: 1; padding: 0.9rem 1.5rem;
  border: none; outline: none; background: transparent;
  font-family: var(--f-body); font-size: 0.95rem; color: var(--ink);
  min-width: 0;
}
.cta-form input::placeholder { color: #C4847A; opacity: 0.5; }
.cta-form button {
  padding: 0.9rem 1.8rem; background: var(--rose); color: white;
  border: none; border-radius: 50px;
  font-family: var(--f-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  white-space: nowrap; transition: background .3s;
}
.cta-form button:hover { background: var(--sienna); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.cta-collage { position: relative; height: 500px; }
.col-img {
  position: absolute; border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(28,16,8,0.15);
  border: 4px solid white;
}
.col-img img { width:100%; height:100%; object-fit:cover; }
.ci-1 { top: 0; left: 0; width: 55%; height: 62%; }
.ci-2 { top: 15%; right: 0; width: 42%; height: 55%; }
.ci-3 { bottom: 0; left: 18%; width: 48%; height: 42%; }

/* ─────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────── */
#lb {
  display: none; position: fixed; inset: 0; z-index: 5000;
  background: rgba(28,16,8,0.97); backdrop-filter: blur(24px);
  align-items: center; justify-content: center; padding: 2rem; cursor: pointer;
}
#lb.on { display: flex; }
.lb-stage {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 2rem;
  max-width: 1100px; width: 100%; align-items: center; cursor: default;
}
.lb-stage img { width:100%; max-height:80vh; object-fit:contain; border-radius:20px; box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.lb-card {
  background: var(--cream); color: var(--ink);
  border-radius: 20px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lb-cat { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); font-weight: 500; }
.lb-title { font-family: var(--f-display); font-size: 2rem; line-height: 1.1; color: var(--ink-2); }
.lb-desc { font-size: 0.9rem; color: var(--brown); line-height: 1.7; font-weight: 300; }
.lb-wa {
  margin-top: auto; padding: 0.95rem 1.4rem;
  background: #25D366; color: white;
  border-radius: 50px; text-decoration: none;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  transition: background .3s, transform .3s;
}
.lb-wa:hover { background: #1da851; transform: translateY(-2px); }

.lb-x { position:absolute; top:2rem; right:2rem; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2); color:white; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:1.1rem; transition:all .3s; z-index: 2; }
.lb-x:hover { background:var(--rose); }
.lb-arr { position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.14); color:white; font-size:1.4rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .3s; z-index: 2; }
.lb-arr:hover { background:var(--rose); }
.lb-prev { left:2rem; } .lb-next { right:2rem; }

@media(max-width:768px) {
  .lb-stage { grid-template-columns: 1fr; gap: 1rem; max-height: 90vh; overflow-y: auto; }
  .lb-stage img { max-height: 50vh; }
  .lb-card { padding: 1.2rem; }
  .lb-title { font-size: 1.4rem; }
  .lb-arr { display: none; }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: var(--ink); position: relative; overflow: hidden; }
.footer-banner { width:100%; height:200px; object-fit:cover; opacity:0.18; display:block; filter:sepia(40%); }
.footer-inner { max-width:1280px; margin:0 auto; padding:5rem 2rem 3rem; display:grid; grid-template-columns:2.5fr 1fr 1fr 1fr; gap:4rem; }
.f-brand-logo { display:flex; align-items:center; gap:0.7rem; margin-bottom:1.2rem; }
.f-brand-logo img { height:38px; width: auto; filter:brightness(0) invert(1); opacity:0.7; }
.f-brand-name { font-family:var(--f-display); font-size:1.6rem; color:rgba(255,255,255,0.85); }
.f-brand-name span { color:var(--rose); font-family:var(--f-serif); font-style:italic; }
.f-bio { font-size:0.88rem; color:rgba(255,255,255,0.3); line-height:1.75; font-weight:300; max-width:280px; }
.f-social { display:flex; gap:0.6rem; margin-top:1.5rem; }
.f-social a { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; transition:all .3s; }
.f-social a:hover { background:var(--rose); border-color:var(--rose); }
.f-social svg { width:14px; height:14px; fill:white; }
.f-col h4 { font-family:var(--f-display); font-size:1rem; color:rgba(255,255,255,0.75); margin-bottom:1.5rem; }
.f-col ul { list-style:none; }
.f-col li { margin-bottom:0.7rem; }
.f-col a { text-decoration:none; color:rgba(255,255,255,0.3); font-size:0.85rem; transition:color .3s; font-weight:300; }
.f-col a:hover { color:var(--gold-lt); }
.f-bottom { max-width:1280px; margin:0 auto; padding:1.5rem 2rem; border-top:1px solid rgba(255,255,255,0.05); display:flex; justify-content:space-between; font-size:0.77rem; color:rgba(255,255,255,0.2); }

/* ─────────────────────────────────────────
   WHATSAPP
───────────────────────────────────────── */
.wa {
  position:fixed; bottom:2rem; right:2rem; z-index:999;
  width:56px; height:56px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 30px rgba(37,211,102,0.4); text-decoration:none;
  transition:all .4s var(--ease);
  animation: waBeat 2s ease-in-out infinite;
}
.wa:hover { transform:scale(1.14) translateY(-3px); }
.wa svg { width:27px; height:27px; fill:white; }
@keyframes waBeat { 0%,100%{box-shadow:0 6px 30px rgba(37,211,102,0.4)} 50%{box-shadow:0 6px 40px rgba(37,211,102,0.65)} }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media(max-width:1024px) {
  .bento { grid-template-rows: repeat(3, 280px); }
  .bc-1 { grid-column:1/7; grid-row:1/3; }
  .bc-2 { grid-column:7/13; grid-row:1/2; }
  .bc-3 { grid-column:7/13; grid-row:2/3; }
  .bc-4 { grid-column:1/7; grid-row:3/4; }
  .bc-5 { grid-column:7/13; grid-row:3/4; }
  .about-grid { grid-template-columns:1fr; gap:4rem; }
  .about-stats { position:static; margin-top:1.5rem; }
  .about-mini-img { display:none; }
  .cta-inner { grid-template-columns:1fr; gap:4rem; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:3rem; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  #nav { top:0.8rem; border-radius:20px; }
  .nav-links { display:none; }
  .nav-burger { display:flex; }
  .nav-links.open {
    display:flex; flex-direction:column; gap:1.2rem;
    position:absolute; top:calc(100% + 0.5rem); left:0; right:0;
    border-radius:20px; padding:2rem; background:rgba(250,245,238,0.98);
    backdrop-filter:blur(20px); border:1px solid rgba(255,255,255,0.5);
  }
  .hero-content { grid-template-columns:1fr; padding:0 1.5rem 4rem; }
  .hero-right { flex-direction:row; flex-wrap:wrap; }
  .hero-pill { flex:1; min-width:180px; }
  .hero-h1 { font-size:clamp(3.5rem,12vw,6rem); }
  .bento { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5 { grid-column:span 1; grid-row:span 1; height:260px; }
  .bc-1 { grid-column:span 2; height:320px; }
  .test-grid { grid-template-columns:1fr; max-width:450px; margin-left:auto; margin-right:auto; }
  .footer-inner { grid-template-columns:1fr; }
  .f-bottom { flex-direction:column; gap:0.4rem; text-align:center; }
  .car-slide { width:260px; }
  .car-slide.wide { width:340px; }
  .car-track { padding:0 1.5rem; }
  .cta-form { flex-direction:column; border-radius:20px; }
  .cta-form button { border-radius:12px; }
}

/* ─────────────────────────────────────────
   ACCESIBILIDAD — reducir movimiento
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body { cursor: auto !important; }
  #cursor, #cursor-ring { display: none !important; }
  .marquee-track { animation: none !important; }
  .hero-bg img { animation: none !important; }
}
