/* ============================================================
   DAN KAPH — Sitio oficial
   Dark cinematic · gold & crimson accents
   ============================================================ */

:root {
  /* Palette (brand brief) */
  --bg:        #0F0F10;   /* deep charcoal */
  --bg-2:      #1A1A1D;   /* rich dark gray */
  --bg-3:      #131316;
  --gold:      #D4AF37;   /* warm gold */
  --gold-soft: #E8CE74;
  --gold-deep: #A8842A;
  --crimson:   #8E1B1B;   /* brand red (album art) */
  --crimson-br:#C62828;
  --text:      #F5F5F5;   /* soft white */
  --text-2:    #B8B8B8;   /* light gray */
  --text-3:    #777179;
  --line:      rgba(245,245,245,0.10);
  --line-2:    rgba(245,245,245,0.06);

  --ff-display: "Oswald", system-ui, sans-serif;
  --ff-serif:   "Cormorant Garamond", Georgia, serif;
  --ff-body:    "Manrope", system-ui, sans-serif;
  --ff-brand:   "Bebas Neue", "Oswald", sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2e; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(64px, 8vw, 110px) 0; }

.eyebrow {
  font-family: var(--ff-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 13px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: .8;
}
.eyebrow.is-centered::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: .8;
}

.h-display {
  font-family: var(--ff-display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 22px 0 0;
}
.section-title .thin { color: var(--text-2); font-weight: 300; }
.lead {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.5;
  color: var(--text-2);
  font-weight: 400;
  max-width: 60ch;
}

.section-head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 740px; }
.section-head.is-centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.is-centered .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --bw: 1px;
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 14px;
  font-weight: 500;
  padding: 17px 30px;
  border: var(--bw) solid transparent;
  cursor: pointer;
  background: none;
  color: var(--text);
  transition: all .35s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn--gold {
  background: var(--gold);
  color: #14110a;
  box-shadow: 0 14px 40px -16px rgba(212,175,55,0.7);
}
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 22px 50px -16px rgba(212,175,55,0.85); }
.btn--gold:hover svg { transform: translateX(4px); }
.btn--ghost { border-color: rgba(245,245,245,0.28); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--ghost:hover svg { transform: translateX(4px); }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 26px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15,15,16,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 16px 0;
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  font-family: var(--ff-brand);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: 0.34em;
  color: var(--text);
  display: inline-flex; align-items: baseline; gap: 0;
  padding-left: 0.34em;
}
.brand b { color: var(--gold); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-2);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__cta .btn { padding: 12px 22px; font-size: 12.5px; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--text); transition: .3s var(--ease); transform-origin: center; }
.nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(12,12,13,0.97);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: 30px; letter-spacing: 0.1em; color: var(--text-2);
  padding: 12px; transition: color .25s, letter-spacing .25s;
}
.mobile-menu a:hover { color: var(--gold); letter-spacing: 0.18em; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("img/hero.png");
  background-size: cover;
  background-position: 72% center;
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(15,15,16,0.92) 0%, rgba(15,15,16,0.55) 34%, rgba(15,15,16,0.05) 62%, rgba(15,15,16,0.0) 100%),
    linear-gradient(0deg, rgba(15,15,16,0.96) 2%, rgba(15,15,16,0.25) 36%, rgba(15,15,16,0.0) 60%);
}
.hero__vignette { position: absolute; inset: 0; z-index: 1; box-shadow: inset 0 0 240px 30px rgba(0,0,0,0.8); pointer-events: none; }
.hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(64px, 10vh, 130px); padding-top: 140px; }
.hero__eyebrow { margin-bottom: 26px; opacity: 0; animation: fadeUp .9s var(--ease) .2s forwards; }
.hero__title {
  font-family: var(--ff-brand);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(74px, 17vw, 250px);
  line-height: 0.84;
  letter-spacing: 0.02em;
  margin: 0;
  text-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.hero__title .l { display: inline-block; opacity: 0; transform: translateY(40px); animation: heroChar .9s var(--ease) forwards; }
.hero__title .space { display: inline-block; width: 0.28em; }
.hero__subtitle {
  margin-top: 30px;
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 300;
  color: var(--text);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s var(--ease) .9s forwards;
}
.hero__subtitle .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; display: inline-block; }
.hero__actions { margin-top: 46px; display: flex; gap: 18px; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s var(--ease) 1.1s forwards; }

.hero__scroll {
  position: absolute; z-index: 3; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.3em; font-size: 11px; color: var(--text-2);
  opacity: 0; animation: fadeUp 1s var(--ease) 1.5s forwards;
}
.hero__scroll .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrollPulse 2.2s var(--ease) infinite; }

@keyframes heroChar { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ============================================================
   MARQUEE strip
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-3); overflow: hidden; padding: 22px 0;
}
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 26px; font-weight: 500; color: var(--text-3);
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee__track span::after { content: "✶"; color: var(--gold); font-size: 16px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.about__portrait { position: relative; }
.about__portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 22%; filter: contrast(1.05); }
.about__portrait::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); z-index: -1; opacity: .55;
}
.about__portrait .tag {
  position: absolute; left: 0; bottom: 24px; transform: translateX(-22px);
  background: var(--gold); color: #14110a; font-family: var(--ff-display); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 12px; font-weight: 600; padding: 11px 20px;
}
.about__body p { color: var(--text-2); margin-top: 22px; max-width: 56ch; }
.about__body p strong { color: var(--text); font-weight: 600; }
.about__sign {
  margin-top: 34px; font-family: var(--ff-serif); font-style: italic; font-size: 30px; color: var(--gold-soft); line-height: 1;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; border-top: 1px solid var(--line); padding-top: 34px; }
.stat .n { font-family: var(--ff-display); font-weight: 600; font-size: clamp(34px, 4vw, 50px); color: var(--text); line-height: 1; }
.stat .n .u { color: var(--gold); }
.stat .l { margin-top: 10px; font-size: 13px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.16em; font-family: var(--ff-display); }

/* ============================================================
   MUSIC
   ============================================================ */
.music { background: var(--bg-2); }
.featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center;
  background: linear-gradient(120deg, #1d1416 0%, #160e10 60%, #14100d 100%);
  border: 1px solid var(--line); margin-bottom: clamp(48px, 7vw, 88px);
  position: relative; overflow: hidden;
}
.featured__media { position: relative; align-self: stretch; min-height: 420px; }
.featured__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.featured__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, #160e10); }
.featured__body { padding: clamp(34px, 4vw, 60px) clamp(34px, 4vw, 60px) clamp(34px, 4vw, 60px) 0; }
.featured__badge {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-display); text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 12px; color: var(--gold); margin-bottom: 18px;
}
.featured__badge .pulse { width: 8px; height: 8px; background: var(--crimson-br); border-radius: 50%; box-shadow: 0 0 0 0 rgba(198,40,40,0.7); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 70% { box-shadow: 0 0 0 11px rgba(198,40,40,0); } 100% { box-shadow: 0 0 0 0 rgba(198,40,40,0); } }
.featured__title { font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; font-size: clamp(40px, 6vw, 76px); line-height: 0.92; }
.featured__title em { display: block; font-family: var(--ff-serif); font-style: italic; text-transform: none; font-weight: 400; color: var(--gold-soft); font-size: 0.5em; margin-top: 8px; letter-spacing: 0; }
.featured__sub { color: var(--text-2); margin-top: 20px; max-width: 44ch; }
.featured__platforms { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.platform {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 12.5px; color: var(--text-2);
  transition: all .3s var(--ease);
}
.platform svg { width: 18px; height: 18px; }
.platform:hover { border-color: var(--gold); color: var(--text); background: rgba(212,175,55,0.07); transform: translateY(-2px); }

/* Discography grid */
.disco { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.disc { position: relative; cursor: pointer; }
.disc__art { position: relative; overflow: hidden; aspect-ratio: 1/1; background: #000; }
.disc__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.disc:hover .disc__art img { transform: scale(1.07); filter: brightness(.6); }
.disc__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s var(--ease);
}
.disc:hover .disc__play { opacity: 1; }
.disc__play span {
  width: 64px; height: 64px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  background: rgba(15,15,16,0.45); backdrop-filter: blur(3px);
  transform: scale(.8); transition: transform .4s var(--ease);
}
.disc:hover .disc__play span { transform: scale(1); }
.disc__play svg { width: 22px; height: 22px; margin-left: 3px; }
.disc__meta { padding-top: 16px; }
.disc__meta h4 { font-family: var(--ff-display); text-transform: uppercase; font-weight: 500; letter-spacing: 0.06em; font-size: 17px; }
.disc__meta p { font-family: var(--ff-serif); font-style: italic; color: var(--text-3); font-size: 16px; margin-top: 2px; }

/* ============================================================
   VIDEOS
   ============================================================ */
.videos__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; }
.video { position: relative; overflow: hidden; cursor: pointer; background: #000; }
.video img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s; }
.video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,15,16,0.92) 0%, rgba(15,15,16,0.1) 55%, rgba(15,15,16,0.35) 100%); }
.video:hover img { transform: scale(1.06); filter: brightness(.75); }
.video--lg { grid-row: span 2; min-height: 480px; }
.video--sm { min-height: 229px; }
.video__btn {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.9);
  width: 84px; height: 84px; border-radius: 50%; border: 1.5px solid rgba(245,245,245,0.45);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: all .45s var(--ease); background: rgba(0,0,0,0.2); backdrop-filter: blur(2px);
}
.video:hover .video__btn { border-color: var(--gold); color: var(--gold); transform: translate(-50%,-50%) scale(1); background: rgba(212,175,55,0.12); }
.video__btn svg { width: 28px; height: 28px; margin-left: 4px; }
.video__cap { position: absolute; z-index: 2; left: 0; bottom: 0; padding: clamp(22px, 3vw, 34px); }
.video__cap .k { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--gold); }
.video__cap h3 { font-family: var(--ff-display); text-transform: uppercase; font-weight: 500; font-size: clamp(20px, 2.4vw, 30px); margin-top: 8px; line-height: 1.05; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid { columns: 3; column-gap: 18px; }
.gallery__item { break-inside: avoid; margin-bottom: 18px; position: relative; overflow: hidden; cursor: pointer; }
.gallery__item img { width: 100%; transition: transform .9s var(--ease), filter .5s; }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; background: rgba(15,15,16,0.0); transition: background .5s;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { background: rgba(15,15,16,0.25); }
.gallery__item .plus {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.6);
  width: 50px; height: 50px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: all .45s var(--ease);
  background: rgba(15,15,16,0.4);
}
.gallery__item:hover .plus { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(8,8,9,0.96);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; box-shadow: 0 40px 120px rgba(0,0,0,0.7); transform: scale(.96); transition: transform .4s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox__close, .lightbox__nav { position: absolute; background: none; border: 1px solid var(--line); color: var(--text); cursor: pointer; transition: all .3s; }
.lightbox__close { top: 28px; right: 28px; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lightbox__nav.prev { left: 28px; } .lightbox__nav.next { right: 28px; }
.lightbox__nav svg, .lightbox__close svg { width: 22px; height: 22px; }
.lightbox__count { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); font-family: var(--ff-display); letter-spacing: 0.3em; font-size: 13px; color: var(--text-2); }

/* ============================================================
   SHOWS
   ============================================================ */
.shows { background: var(--bg-2); }
.show-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.show {
  display: grid; grid-template-columns: 130px 1fr auto; gap: 28px; align-items: center;
  padding: 30px 8px; border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), padding .4s var(--ease);
}
.show:hover { background: rgba(212,175,55,0.04); padding-left: 24px; padding-right: 24px; }
.show__date { font-family: var(--ff-display); text-align: center; line-height: 1; }
.show__date .d { font-size: 42px; font-weight: 600; color: var(--gold); }
.show__date .m { font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-2); margin-top: 6px; }
.show__info h3 { font-family: var(--ff-display); text-transform: uppercase; font-weight: 500; font-size: 22px; letter-spacing: 0.04em; }
.show__info p { color: var(--text-3); font-size: 15px; margin-top: 4px; }
.show__city { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; color: var(--text-2); }
.show__status { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-family: var(--ff-display); color: var(--text-3); margin-top: 5px; }
.show .btn { padding: 12px 24px; font-size: 12px; }
.show--soldout .btn { opacity: .4; pointer-events: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { position: relative; overflow: hidden; }
.testi__quote-mark { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); font-family: var(--ff-serif); font-size: 340px; line-height: 1; color: rgba(212,175,55,0.06); pointer-events: none; z-index: 0; }
.testi__viewport { position: relative; z-index: 1; overflow: hidden; max-width: 860px; margin: 0 auto; }
.testi__track { display: flex; transition: transform .7s var(--ease); }
.testi__slide { min-width: 100%; text-align: center; padding: 0 10px; }
.testi__text { font-family: var(--ff-serif); font-style: italic; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.45; color: var(--text); }
.testi__by { margin-top: 32px; }
.testi__by .name { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 16px; color: var(--gold); }
.testi__by .role { color: var(--text-3); font-size: 14px; margin-top: 4px; }
.testi__dots { display: flex; gap: 12px; justify-content: center; margin-top: 50px; }
.testi__dots button { width: 38px; height: 3px; background: var(--line); border: 0; cursor: pointer; transition: background .35s; padding: 0; }
.testi__dots button.active { background: var(--gold); }
.testi__arrows { display: flex; gap: 14px; justify-content: center; margin-top: 26px; }
.testi__arrows button { width: 48px; height: 48px; border: 1px solid var(--line); background: none; color: var(--text-2); cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.testi__arrows button:hover { border-color: var(--gold); color: var(--gold); }
.testi__arrows svg { width: 18px; height: 18px; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--bg-2); position: relative; }
.booking__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.booking__aside .lead { margin-top: 24px; }
.booking__contact { margin-top: 44px; display: flex; flex-direction: column; gap: 22px; }
.booking__contact a { display: flex; align-items: center; gap: 16px; color: var(--text-2); transition: color .3s; }
.booking__contact a:hover { color: var(--gold); }
.booking__contact .ic { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--gold); }
.booking__contact .ic svg { width: 18px; height: 18px; }
.booking__contact .t { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; color: var(--text-3); }
.booking__contact .v { font-size: 16px; color: var(--text); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; color: var(--text-2); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--line); color: var(--text);
  padding: 15px 16px; font-family: var(--ff-body); font-size: 15.5px; transition: all .3s var(--ease); width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(212,175,55,0.05); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field.error input, .field.error select, .field.error textarea { border-color: var(--crimson-br); }
.field .err { color: #e07b7b; font-size: 12.5px; min-height: 0; display: none; }
.field.error .err { display: block; }
.form__submit { grid-column: 1 / -1; margin-top: 6px; }
.form__note { grid-column: 1/-1; font-size: 13px; color: var(--text-3); }

.form-success {
  grid-column: 1/-1; text-align: center; padding: 50px 30px; border: 1px solid var(--gold); background: rgba(212,175,55,0.05);
}
.form-success .ic { width: 64px; height: 64px; border: 1.5px solid var(--gold); border-radius: 50%; color: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-success .ic svg { width: 28px; height: 28px; }
.form-success h3 { font-family: var(--ff-display); text-transform: uppercase; font-size: 26px; letter-spacing: 0.06em; }
.form-success p { color: var(--text-2); margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: clamp(64px, 8vw, 110px) 0 40px; border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer__brand .logo { font-family: var(--ff-brand); font-weight: 600; text-transform: uppercase; font-size: 36px; letter-spacing: 0.3em; padding-left: 0.3em; }
.footer__brand .logo b { color: var(--gold); }
.footer__brand p { color: var(--text-3); margin-top: 18px; max-width: 36ch; font-family: var(--ff-serif); font-style: italic; font-size: 19px; }
.footer__col h5 { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.18em; font-size: 13px; color: var(--text-3); margin-bottom: 22px; }
.footer__col a { display: block; color: var(--text-2); padding: 7px 0; transition: color .3s, padding-left .3s; font-size: 15px; }
.footer__col a:hover { color: var(--gold); padding-left: 6px; }
.footer__social { display: flex; gap: 14px; margin-top: 8px; }
.footer__social a { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-2); transition: all .35s var(--ease); }
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 32px; flex-wrap: wrap; }
.footer__bottom p { color: var(--text-3); font-size: 13px; }
.footer__bottom .credit { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__portrait { max-width: 480px; }
  .featured { grid-template-columns: 1fr; }
  .featured__media { min-height: 320px; }
  .featured__media::after { background: linear-gradient(0deg, #160e10, transparent 55%); }
  .featured__body { padding: clamp(28px,5vw,44px); }
  .disco { grid-template-columns: repeat(2, 1fr); }
  .videos__grid { grid-template-columns: 1fr; }
  .video--lg { grid-row: auto; min-height: 340px; }
  .video--sm { min-height: 240px; }
  .booking__grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .burger { display: flex; }
  .gallery__grid { columns: 2; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .show { grid-template-columns: 70px 1fr; grid-template-areas: "date info" "date city"; gap: 8px 20px; row-gap: 14px; }
  .show__date { grid-area: date; } .show__info { grid-area: info; } 
  .show__date .d { font-size: 32px; }
  .show .right { grid-area: city; }
  .show .btn { grid-area: btn; width: 100%; justify-content: center; margin-top: 8px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .form { grid-template-columns: 1fr; }
  .lightbox__nav.prev { left: 12px; } .lightbox__nav.next { right: 12px; }
  .lightbox { padding: 20px; }
  /* Hero mobile: sin gradiente horizontal (la cara queda sin oscurecer).
     Solo se mantiene el degradado inferior para la legibilidad del título. */
  .hero__scrim {
    background: linear-gradient(0deg, rgba(15,15,16,0.96) 2%, rgba(15,15,16,0.25) 36%, rgba(15,15,16,0.0) 60%);
  }
}
@media (max-width: 480px) {
  .gallery__grid { columns: 1; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   VIDEO PLAYER (YouTube embed)
   ============================================================ */
.video[data-ytid] { cursor: pointer; }
.videobox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 5vw; background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(6px);
}
.videobox.open { display: flex; }
.videobox__frame {
  position: relative; width: min(1000px, 94vw); aspect-ratio: 16 / 9;
}
.videobox__frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; border-radius: 12px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}
.videobox__close {
  position: absolute; top: max(16px, 3vw); right: max(16px, 3vw);
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.12); color: #fff;
  display: grid; place-items: center; transition: background .2s;
}
.videobox__close:hover { background: rgba(255, 255, 255, 0.22); }
.videobox__close svg { width: 22px; height: 22px; }
