/* ===========================================================
   Styled Panama — Editorial Dark Warm (adapted)
   Palette: Noir / Crema / Lino / Piedra / Tabaco
   Fonts: Cormorant Garamond (display) + Montserrat (body)
   =========================================================== */

:root {
  --noir:   #1a1a1a;
  --noir-2: #232220;
  --noir-3: #2c2a27;
  --crema:  #faf9f7;
  --crema-2:#f0ece5;
  --lino:   #c8bfb0;
  --piedra: #888780;
  --tabaco: #3d2b1f;
  --gold:   #cbb489;   /* warm metallic accent derived from lino/tabaco */

  --line-dark:  rgba(250,249,247,0.14);
  --line-light: rgba(26,26,26,0.12);

  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Montserrat", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
  --pad: clamp(1.2rem, 5vw, 5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--noir);
  color: var(--crema);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---------- Logo / monogram ---------- */
.sp {
  display: inline-grid;
  place-items: center;
  width: 1.55em; height: 1.7em;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1;
  border-radius: 5px;
}
.sp-s { background: currentColor; }
.sp-s::after { content: "S"; color: var(--noir); }
.sp-p { border: 1.6px solid currentColor; margin-left: .18em; }
.sp-p::after { content: "P"; color: currentColor; }
/* on cream sections the noir letter inside filled box should be cream */
.section-cream .sp-s::after { color: var(--crema); }

.logo { display: inline-flex; align-items: center; font-size: 1.05rem; color: var(--crema); }

/* inline SP mark — colors driven by currentColor so it shows cream on dark bars */
.logo-mark { height: 30px; width: auto; display: block; overflow: visible; }
.lm-stroke { fill: none; stroke: currentColor; stroke-width: 1; stroke-linecap: square; }
.lm-fill { fill: currentColor; }
.lm-outline { fill: none; stroke: currentColor; stroke-width: .9; }
.lm-knock, .lm-letter { font-family: var(--display); font-size: 22px; font-weight: 500; }
.lm-knock { fill: var(--noir); }
.lm-letter { fill: currentColor; }
.footer .logo-mark { height: 32px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.btn-primary:hover { background: #d8c39a; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--crema); border-color: var(--line-dark); }
.btn-ghost:hover { border-color: var(--crema); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--crema); border-color: var(--line-dark); }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--noir); color: var(--crema); }
.btn-dark:hover { background: var(--tabaco); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.3rem; font-size: .88rem; }

.kicker {
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ===========================================================
   SPLASH
   =========================================================== */
.splash {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--noir);
  display: grid; place-content: center; justify-items: center;
  gap: 1.1rem;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
  animation: splashSafety .01s 4.5s forwards; /* safety net if JS fails */
}
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-mark { color: var(--crema); font-size: 2.4rem; display: flex; animation: spIn .9s var(--ease) both; }
.splash-word {
  font-family: var(--display); font-style: italic; font-size: 1.4rem;
  color: var(--lino); letter-spacing: .04em;
  opacity: 0; animation: fadeUp .8s var(--ease) .35s forwards;
}
@keyframes spIn { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { to { opacity: 1; } }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.1rem var(--pad);
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(20,20,20,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding-block: .75rem;
  border-bottom-color: var(--line-dark);
}
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--crema); opacity: .82; position: relative; padding: .2rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: .4rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; margin-left: auto; }
.nav-toggle span { position: absolute; left: 0; height: 2px; width: 100%; background: var(--crema); transition: transform .35s var(--ease), opacity .35s var(--ease); }
.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }
.nav.is-open .nav-toggle span:first-child { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem var(--pad) 5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.04); transform: scale(1.04); }
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,20,20,.7) 0%, rgba(20,20,20,.35) 35%, rgba(20,20,20,.55) 70%, rgba(20,20,20,.9) 100%),
    linear-gradient(90deg, rgba(20,20,20,.75) 0%, transparent 60%);
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: 1; pointer-events: none;
  background:
    radial-gradient(38% 32% at 18% 28%, rgba(203,180,137,.30), transparent 70%),
    radial-gradient(40% 34% at 82% 72%, rgba(61,43,31,.45), transparent 72%);
  filter: blur(60px);
  animation: meshDrift 22s ease-in-out infinite;
}
@keyframes meshDrift { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(2%,-2%,0) scale(1.12); } }
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 3; max-width: var(--maxw); width: 100%; margin: 0 auto; }
.hero-inner .kicker { margin-bottom: 1.3rem; }
.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.7rem, 8vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -.01em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--lino); }
.hero-sub {
  margin-top: 1.6rem; max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--crema-2); font-weight: 300; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.3rem; }
.hero-stats { display: flex; gap: 2.6rem; margin-top: 3.2rem; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats .num { font-family: var(--display); font-size: 2.5rem; line-height: 1; color: var(--crema); }
.hero-stats small { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--piedra); margin-top: .4rem; }

.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--piedra);
}
.hero-scroll span { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .4; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===========================================================
   SECTIONS (shared)
   =========================================================== */
.section { padding: clamp(4.5rem, 9vw, 8.5rem) var(--pad); position: relative; }
.section-dark { background: var(--noir); color: var(--crema); }
.section-cream { background: var(--crema); color: var(--noir); }
.section-cream .kicker { color: var(--tabaco); }

.section-head { max-width: var(--maxw); margin: 0 auto 3.4rem; }
.section-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.02; margin-top: 1rem;
  letter-spacing: -.01em; max-width: 18ch; text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-cream .section-title em { color: var(--tabaco); }
.section-lead { margin-top: 1.2rem; max-width: 52ch; font-weight: 300; color: var(--piedra); font-size: 1.04rem; }
.section-cream .section-lead { color: #6c6a63; }

/* ---------- Catálogo ---------- */
.pieces-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
}
.pieces-grid .piece:first-child { grid-column: span 1; }
.piece {
  background: var(--noir-2);
  border: 1px solid var(--line-dark);
  border-radius: 16px; overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.piece:hover { border-color: rgba(203,180,137,.4); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.piece-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.piece-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.piece:hover .piece-media img { transform: scale(1.07); }
.piece-tag {
  position: absolute; top: .9rem; left: .9rem;
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(20,20,20,.7); backdrop-filter: blur(6px);
  color: var(--lino); padding: .35rem .7rem; border-radius: 999px; border: 1px solid var(--line-dark);
}
.piece h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 600; margin: 1.2rem 1.3rem .4rem; }
.piece p { margin: 0 1.3rem 1.4rem; font-size: .9rem; font-weight: 300; color: var(--piedra); line-height: 1.55; }

/* ---------- Servicios ---------- */
.services {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
}
.service {
  background: var(--noir-2);
  border: 1px solid var(--line-dark);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.service:hover { border-color: rgba(203,180,137,.4); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.service-media { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service:hover .service-media img { transform: scale(1.06); }
.service-num {
  position: absolute; top: .9rem; left: 1rem;
  font-family: var(--display); font-size: 1.5rem; font-weight: 600; line-height: 1;
  color: var(--crema);
  width: 2.4rem; height: 2.4rem; display: grid; place-items: center;
  background: rgba(20,20,20,.55); backdrop-filter: blur(6px);
  border: 1px solid var(--line-dark); border-radius: 50%;
}
.service-body { padding: 1.5rem 1.5rem 1.8rem; }
.service-body h3 { font-family: var(--display); font-size: 1.9rem; font-weight: 600; margin-bottom: 1rem; }
.service-list { display: flex; flex-direction: column; gap: .6rem; }
.service-list li { position: relative; padding-left: 1.4rem; font-size: .92rem; font-weight: 300; color: var(--crema-2); }
.service-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- Galería (showcase horizontal) ---------- */
.gallery { overflow: hidden; }
.showcase { max-width: 100%; margin-top: .5rem; }
.showcase-track {
  display: flex; gap: 1.3rem; padding: .5rem var(--pad) 1.5rem;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.showcase-track::-webkit-scrollbar { display: none; }
.shot {
  position: relative; flex: 0 0 auto;
  width: clamp(260px, 34vw, 440px);
  aspect-ratio: 3/4; border-radius: 14px; overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 24px 50px -28px rgba(26,26,26,.45);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; gap: .1rem;
  padding: 2.4rem 1.3rem 1.1rem;
  background: linear-gradient(transparent, rgba(20,20,20,.82));
  color: var(--crema);
}
.shot figcaption b { font-family: var(--display); font-size: 1.4rem; font-weight: 600; }
.shot figcaption span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--lino); }
.showcase-hint { max-width: var(--maxw); margin: 1rem auto 0; padding-inline: var(--pad); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--piedra); }

/* ---------- Precios ---------- */
.tiers { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; align-items: stretch; }
.tiers-4 { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tiers-4 .tier { padding: 2rem 1.5rem; }
.tier {
  position: relative; background: var(--noir-2); border: 1px solid var(--line-dark);
  border-radius: 18px; padding: 2.2rem 1.9rem; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.tier:hover { transform: translateY(-6px); border-color: rgba(203,180,137,.35); }
.tier-popular { background: linear-gradient(180deg, var(--noir-3), var(--noir-2)); border-color: rgba(203,180,137,.5); }
.tier-badge {
  position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--noir); font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 600; padding: .4rem .9rem; border-radius: 999px;
}
.tier h3 { font-family: var(--display); font-size: 1.8rem; font-weight: 600; }
.tier-line { font-size: .82rem; color: var(--piedra); margin-top: .15rem; }
.tier-price { display: flex; align-items: baseline; gap: .4rem; margin: 1.3rem 0; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line-dark); }
.tier-price small { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--piedra); }
.tier-price .amount { font-family: var(--display); font-size: 2.9rem; line-height: 1; color: var(--crema); }
.tier ul { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.8rem; flex: 1; }
.tier li { position: relative; padding-left: 1.5rem; font-size: .9rem; font-weight: 300; color: var(--crema-2); }
.tier li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.tier .btn { width: 100%; }

/* ---------- Reservar (calendario) ---------- */
.booking { background: var(--crema-2); }
.booking-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
}
.cal {
  background: var(--crema); border: 1px solid var(--line-light); border-radius: 16px;
  padding: 1.4rem 1.4rem 1.6rem; box-shadow: 0 24px 50px -34px rgba(26,26,26,.4);
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.cal-title { font-family: var(--display); font-size: 1.5rem; font-weight: 600; text-transform: capitalize; }
.cal-nav {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-light);
  background: transparent; cursor: pointer; font-size: 1.2rem; color: var(--noir);
  display: grid; place-items: center; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.cal-nav:hover:not(:disabled) { background: var(--noir); color: var(--crema); border-color: var(--noir); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 6px; }
.cal-dow span { text-align: center; font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; color: var(--piedra); padding: .3rem 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-day {
  aspect-ratio: 1; border: 1px solid transparent; border-radius: 10px; background: transparent;
  cursor: pointer; font-family: var(--body); font-size: .9rem; color: var(--noir);
  display: grid; place-items: center; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.cal-day:hover:not(:disabled):not(.is-selected) { border-color: var(--noir); }
.cal-day.is-empty { visibility: hidden; cursor: default; }
.cal-day:disabled { color: rgba(26,26,26,.22); cursor: not-allowed; }
.cal-day.is-today { font-weight: 600; box-shadow: inset 0 0 0 1px var(--lino); }
.cal-day.is-selected { background: var(--noir); color: var(--crema); border-color: var(--noir); }

.booking-form { display: flex; flex-direction: column; gap: 1.3rem; }
.bk-field { display: flex; flex-direction: column; gap: .6rem; }
.bk-label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--tabaco); font-weight: 500; }
.bk-opt { color: var(--piedra); letter-spacing: .02em; text-transform: none; font-weight: 400; }
.time-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  font-family: var(--body); font-size: .85rem; padding: .55rem 1.05rem; border-radius: 999px;
  border: 1px solid var(--line-light); background: var(--crema); color: var(--noir); cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.chip:hover { border-color: var(--noir); }
.chip.is-active { background: var(--noir); color: var(--crema); border-color: var(--noir); }
.bk-input {
  font-family: var(--body); font-size: .95rem; padding: .85rem 1rem; border-radius: 10px;
  border: 1px solid var(--line-light); background: var(--crema); color: var(--noir); width: 100%;
  transition: border-color .25s var(--ease);
}
.bk-input::placeholder { color: var(--piedra); }
.bk-input:focus { outline: none; border-color: var(--noir); }
.bk-summary {
  font-family: var(--display); font-size: 1.18rem; color: var(--noir);
  padding: 1rem 1.1rem; border-radius: 12px; background: var(--crema); border: 1px dashed var(--lino);
}
.bk-submit { width: 100%; margin-top: .2rem; }
.bk-submit[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.bk-note { font-size: .78rem; color: var(--piedra); font-weight: 300; }

/* ---------- Nosotros ---------- */
.nosotros { overflow: hidden; }
.nos-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.nos-media { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 60px -34px rgba(26,26,26,.5); }
.nos-media img { width: 100%; height: 110%; object-fit: cover; will-change: transform; }
.nos-text p { color: #57554f; font-weight: 300; margin-top: 1.1rem; max-width: 48ch; }
.nos-text .section-title { color: var(--noir); }
.nos-text .btn { margin-top: 1.8rem; }

/* ---------- Contacto ---------- */
.contacto { overflow: hidden; text-align: center; }
.contacto-mesh { position: absolute; inset: -20%; z-index: 0; }
.contacto-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.contacto-title { font-family: var(--display); font-weight: 500; font-size: clamp(2.4rem, 6.5vw, 5rem); line-height: 1; margin: 1rem 0 0; }
.contacto-title em { font-style: italic; color: var(--gold); }
.contacto .section-lead { margin-inline: auto; margin-top: 1.3rem; }
.contacto .btn-lg { margin-top: 2.2rem; }
.contacto-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 3.4rem; text-align: left;
}
.contacto-list li {
  border: 1px solid var(--line-dark); border-radius: 12px; padding: 1.1rem 1.3rem;
  display: flex; flex-direction: column; gap: .25rem; transition: border-color .4s var(--ease);
}
.contacto-list li:hover { border-color: rgba(203,180,137,.45); }
.c-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--piedra); }
.contacto-list a { font-family: var(--display); font-size: 1.45rem; color: var(--crema); cursor: pointer; }
.contacto-list a:hover { color: var(--gold); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: #141312; color: var(--crema); padding: clamp(3rem,6vw,5rem) var(--pad) 2rem; }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }
.footer-tag { color: var(--piedra); font-weight: 300; max-width: 38ch; font-size: .92rem; }
.footer-links { max-width: var(--maxw); margin: 2rem auto; display: flex; gap: 1.6rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--line-dark); }
.footer-links a { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--crema); opacity: .8; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .8rem; color: var(--piedra); }
.footer-social { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-social a { cursor: pointer; }
.footer-social a:hover { color: var(--gold); }

/* ===========================================================
   FLOATING WHATSAPP + CURSOR
   =========================================================== */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.7);
  transition: transform .35s var(--ease);
  animation: waPop .5s var(--ease) 1.4s both;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }

.cursor { position: fixed; top: 0; left: 0; z-index: 999; pointer-events: none; opacity: 0; transition: opacity .25s var(--ease); }
.cursor.is-ready { opacity: 1; }
.cursor-dot { position: fixed; top: 0; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transform: translate(-50%,-50%); }
.cursor-ring { position: fixed; top: 0; left: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(203,180,137,.6); transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease); }
.cursor.is-hover .cursor-ring { width: 52px; height: 52px; background: rgba(203,180,137,.12); }

/* ===========================================================
   REVEAL ANIMATIONS
   =========================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
/* DEFENSIVE: split-text reveals must never stay invisible */
.reveal[data-split] { opacity: 1; transform: none; }

.line-mask { display: block; overflow: hidden; padding-block: .06em; }
.line-inner { display: block; transform: translateY(115%); transition: transform .9s var(--ease); }
.line-inner.is-in { transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .pieces-grid { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tiers, .tiers-4 { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
  .booking-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .nos-grid { grid-template-columns: 1fr; }
  .nos-media { aspect-ratio: 16/11; max-height: 420px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open {
    background: rgba(20,20,20,.96); backdrop-filter: blur(14px);
    flex-wrap: wrap;
  }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; gap: 1.1rem;
    width: 100%; order: 3; padding: 1.4rem 0 .6rem;
  }
  .nav.is-open .nav-cta { display: inline-flex; order: 4; margin: 0 0 .6rem; }
  .pieces-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .contacto-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.8rem; }
  .hero-stats .num { font-size: 2rem; }
  .cursor { display: none; }
  .footer-bottom { flex-direction: column; }
  /* keep precios at 2 columns on mobile, but compact */
  .tiers-4 { gap: .7rem; }
  .tiers-4 .tier { padding: 1.3rem 1rem; }
  .tiers-4 .tier h3 { font-size: 1.4rem; }
  .tiers-4 .tier-price .amount { font-size: 2.2rem; }
  .tiers-4 .tier li { font-size: .82rem; padding-left: 1.2rem; }
  .tiers-4 .tier .btn { padding: .8rem 1rem; font-size: .72rem; }
  .tier-badge { font-size: .58rem; padding: .35rem .7rem; }
}

@media (hover: none) {
  .cursor { display: none; }
}
