/* ═══════════════════════════════════════════════════════════
   DJ RIGO — style.css
   Estilo editorial nocturno y cinematográfico
   Negro carbón + granate/burdeos + rojo + naranja incandescente
   Oswald (titulares) + Geist (texto)
   ═══════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --bg: #080706;                 /* negro carbón */
  --bg-2: #0d0a09;
  --bg-warm: #100b0a;
  --card: #141010;
  --card-2: #1a1312;
  --border: #2b211d;
  --maroon: #7b171d;             /* granate */
  --red: #d44b2e;                /* rojo */
  --orange: #ff6a3d;             /* naranja incandescente */
  --text: #f4eee7;               /* blanco cálido */
  --muted: #c8b5a3;              /* beige / cobre suave */
  --accent: var(--orange);
  --accent-dim: rgba(255, 106, 61, 0.12);
  --accent-glow: rgba(255, 106, 61, 0.45);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 72px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-btn: 2px;             /* botones rectangulares y directos */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.6);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--orange); color: #0a0605; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--orange); color: #0a0605; padding: 10px 16px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ── Tipografía ────────────────────────────────────────── */
h1, h2, h3 { color: var(--text); font-weight: 600; }

.accent { color: var(--orange); }

.section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.section-dark { background: var(--bg); }
.section-avail { background: var(--bg-warm); }
.section-about { background: var(--bg-2); }
.section-follow { background: var(--bg); }

/* Kicker editorial (número + palabra) */
.section-kicker {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.section-kicker .kicker-num {
  color: var(--orange);
  border: 1px solid rgba(255, 106, 61, 0.55);
  padding: 2px 10px;
  line-height: 1.4;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: clamp(36px, 5vw, 64px);
}

/* ── Tarjeta ───────────────────────────────────────────── */
.card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

/* ── Botones rectangulares ─────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-btn);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(120deg, var(--orange), var(--red));
  color: #0a0605;
  box-shadow: 0 10px 30px rgba(255, 106, 61, 0.28);
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.28), transparent 45%);
  transform: translateX(-110%);
  transition: transform 0.5s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 28px var(--accent-glow); }
.btn-primary:hover::before { transform: translateX(110%); }

.btn-outline {
  color: var(--orange);
  border: 1px solid var(--border);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--orange);
  background: var(--accent-dim);
  box-shadow: 0 0 22px rgba(255, 106, 61, 0.35);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-wa { padding: 12px 22px; font-size: 0.8rem; }

/* ── Header / Nav ──────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(8, 7, 6, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  width: min(1160px, 92%);
  margin-inline: auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}
.brand span { color: var(--orange); }

.main-nav {
  display: flex; align-items: center; gap: clamp(14px, 2.6vw, 30px);
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover { color: var(--orange); }
.main-nav a:hover::after { transform: scaleX(1); }

.lang-switch { display: flex; align-items: center; gap: 6px; margin-left: 6px; }
.lang-btn {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--muted); padding: 4px 2px; transition: color 0.25s var(--ease);
}
.lang-btn.is-active { color: var(--orange); }
.lang-sep { color: var(--border); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px 4px;
  z-index: 110;
}
.hamburger span {
  width: 26px; height: 2px; background: var(--orange);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 44px) 0 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: -15% 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 700px at 82% 12%, rgba(123, 23, 29, 0.6), transparent 62%),
    radial-gradient(950px 620px at 8% 88%, rgba(212, 75, 46, 0.22), transparent 58%),
    radial-gradient(700px 500px at 60% 55%, rgba(255, 106, 61, 0.08), transparent 60%),
    linear-gradient(180deg, #080706 0%, #14090a 55%, #080706 100%);
}
/* textura sutil (SVG noise) */
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.32; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.5) 0%, rgba(8, 7, 6, 0.1) 45%, var(--bg) 97%);
  pointer-events: none;
}

/* Círculo geométrico decorativo */
.hero-ring {
  position: absolute; z-index: 1;
  top: 14%; right: -8%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border: 1.5px solid rgba(255, 106, 61, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring::after {
  content: "";
  position: absolute; inset: 9%;
  border: 1px dashed rgba(244, 238, 231, 0.14);
  border-radius: 50%;
}

.hero-content {
  position: relative; z-index: 2;
  width: min(1160px, 92%);
  margin-inline: auto;
  display: flex; flex-direction: column; gap: 28px;
}

.badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text);
  background: linear-gradient(120deg, rgba(123, 23, 29, 0.9), rgba(123, 23, 29, 0.55));
  border: 1px solid rgba(212, 75, 46, 0.6);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
}
.badge::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 61, 0.6); }
  50% { box-shadow: 0 0 0 7px rgba(255, 106, 61, 0); }
}

.hero-row {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(20px, 4vw, 50px);
  margin-top: -16px;   /* menos espacio entre el badge "OPEN FOR BOOKINGS" y la primera foto */
}

.hero-text { position: relative; z-index: 3; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4.2rem, 14vw, 10.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}
.title-plain { color: var(--text); }
.title-outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--orange);
}
@supports not (-webkit-text-stroke: 1px red) {
  .title-outline { color: var(--orange); }
}

.hero-tagline {
  margin-top: 18px;
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 36ch;
}

.hero-cta { margin-top: 30px; }

/* Retrato recortado, sin marco, más grande */
.hero-portrait {
  position: relative;
  justify-self: end;
  width: min(470px, 40vw);
  margin-right: -6%;
  z-index: 2;
}
.hero-portrait img {
  width: 100%;
  height: auto;
  /* silueta recortada (PNG con transparencia): sin marco, sombra difusa */
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.6));
}

/* Géneros */
.genres {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding-top: 4px;
}
.genres li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text);
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 11px 18px;
  border-radius: var(--radius-btn);
  transition: background-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.genres li:hover {
  background-color: var(--card-2);
  border-color: var(--orange);
  box-shadow: 0 0 18px rgba(255, 106, 61, 0.35);
  transform: translateY(-2px);
}

/* Sociales */
.socials { display: flex; gap: 14px; }
.social-icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-icon svg { width: 22px; height: 22px; }
.social-icon:hover {
  color: #0a0605;
  background-color: var(--orange);
  box-shadow: 0 0 22px rgba(255, 106, 61, 0.5);
  transform: translateY(-3px);
}

/* ── Vídeo ─────────────────────────────────────────────── */
/* Más aire entre el titular "WELCOME TO RIGO'S WORLD" y el vídeo */
#welcome .section-title { margin-bottom: clamp(30px, 5vw, 54px); }

.video-box {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.video-poster {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 22%;   /* la cara se ve mejor (la foto es vertical) */
  transition: transform 0.6s var(--ease);
}
.video-box:hover .video-poster { transform: scale(1.03); }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.35), rgba(8, 7, 6, 0.8));
}
.video-play {
  position: absolute; left: 50%; top: 58%; transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: rgba(8, 7, 6, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.video-play svg { width: 40px; height: 40px; }
.video-play:hover {
  background-color: var(--orange);
  color: #0a0605;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 36px rgba(255, 106, 61, 0.6);
}
.video-box iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.welcome-note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── Calendario + leyenda + e-mail ─────────────────────── */
.section-avail::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(123, 23, 29, 0.5), transparent 65%),
    radial-gradient(700px 500px at 90% 100%, rgba(212, 75, 46, 0.14), transparent 60%);
  pointer-events: none;
}

.calendar-card {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.calendar-card iframe { display: block; }

/* Leyenda adaptada a los colores del calendario:
   rojo = reservado (como las marcas rojas del calendario de Google),
   beige = libre */
.avail-legend {
  max-width: 900px;
  margin: 18px auto 0;
  display: flex; justify-content: center; gap: 34px; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--muted);
}
.legend-item { display: inline-flex; align-items: center; gap: 9px; }
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot-available { background-color: var(--muted); box-shadow: 0 0 8px rgba(200, 181, 163, 0.5); }
.dot-booked { background-color: var(--red); box-shadow: 0 0 10px rgba(212, 75, 46, 0.7); }

.status-available { color: var(--muted); font-weight: 600; }
.status-booked { color: var(--red); font-weight: 600; }

.email-bar {
  position: relative;
  max-width: 900px;
  margin: 32px auto 0;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  padding: 16px 26px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.email-icon {
  width: 42px; height: 42px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  color: #0a0605;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: var(--radius-btn);
}
.email-icon svg { width: 20px; height: 20px; }
.email-link, .email-label {
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text);
}
.email-address {
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.email-address:hover { color: var(--red); border-color: var(--orange); }

/* ── Carrusel ──────────────────────────────────────────── */
.carousel {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease);
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.carousel-slide img,
.carousel-slide svg { width: 100%; height: auto; display: block; }

/* Slides con FOTO REAL de eventos: recorte centrado + textos superpuestos */
.event-slide {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.carousel-slide .event-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;        /* adapta cualquier formato rellenando el marco */
  object-position: center;  /* punto de anclaje: centro de la imagen */
}
.event-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 7, 6, 0.88) 0%, rgba(8, 7, 6, 0.28) 38%, transparent 72%);
  pointer-events: none;
}
.event-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(16px, 3vw, 28px);
  display: flex; flex-direction: column; gap: 2px;
}
.event-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.event-sub {
  font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.event-loc {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orange);
  margin-top: 6px;
}
.event-loc::before { content: "— "; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--text);
  background: rgba(8, 7, 6, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.carousel-arrow:hover { background-color: var(--orange); color: #0a0605; box-shadow: 0 0 20px rgba(255, 106, 61, 0.5); }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 14px;
  display: flex; justify-content: center; gap: 10px;
  z-index: 5;
}
.carousel-dots button {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: rgba(244, 238, 231, 0.4);
  transition: background-color 0.25s var(--ease), width 0.25s var(--ease);
}
.carousel-dots button.is-active {
  background-color: var(--orange);
  width: 26px;
}

/* ── About ─────────────────────────────────────────────── */
.about-sub {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(36px, 5vw, 58px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1.28fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.about-portrait {
  position: relative;
  max-width: 430px;
  width: 100%;
}
.about-portrait::before {
  content: "";
  position: absolute; inset: -14px auto auto -14px;
  width: 130px; height: 130px;
  border-left: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
  opacity: 0.6;
  pointer-events: none;
}
.about-portrait img {
  width: 100%;
  height: auto;
  /* silueta recortada (PNG con transparencia) */
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

.about-text p {
  margin-bottom: 1.1em;
  color: #ddd5ca;
  font-size: 1.01rem;
  max-width: 62ch;
}

.text-link {
  color: var(--orange);
  border-bottom: 1px solid var(--border);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.text-link:hover { color: var(--red); border-color: var(--orange); }

/* ── Follow me ─────────────────────────────────────────── */
.follow-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
  max-width: 860px;
  margin-inline: auto;
}
.follow-icon {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: clamp(24px, 4vw, 42px) 12px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.follow-icon svg { width: 40px; height: 40px; color: var(--orange); transition: transform 0.3s var(--ease); }
.follow-icon span {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text);
}
.follow-icon:hover {
  transform: translateY(-6px);
  background-color: var(--card-2);
  border-color: var(--orange);
  box-shadow: 0 0 28px rgba(255, 106, 61, 0.35);
}
.follow-icon:hover svg { transform: scale(1.12); }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 56px 0 44px;
  text-align: center;
}
.site-footer .brand { display: inline-block; font-size: 1.7rem; margin-bottom: 22px; }
.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 26px;
  margin-bottom: 22px;
}
.footer-legal a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.footer-legal a:hover { color: var(--orange); }
.footer-copy { font-size: 0.82rem; color: var(--muted); }

/* ── Scroll top ────────────────────────────────────────── */
.scroll-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  background: rgba(8, 7, 6, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background-color: var(--orange); color: #0a0605; }
.scroll-top svg { width: 22px; height: 22px; }

/* ── Toast ─────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px);
  z-index: 400;
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 106, 61, 0.16), 0 20px 50px rgba(0, 0, 0, 0.65);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  max-width: 90vw;
  text-align: center;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ── Calendario personalizado (mismos colores que la leyenda) ── */
.avail-calendar {
  padding: clamp(18px, 3vw, 28px);
}
.calendar-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 18px;
}
.calendar-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  flex: 1;
  text-align: center;
}
.calendar-head-right {
  display: flex; align-items: center; gap: 14px;
}
.cal-nav-btn {
  width: 38px; height: 38px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text);
  background-color: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.cal-nav-btn:hover { color: var(--orange); border-color: var(--orange); }
.cal-today-btn {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cal-today-btn:hover { color: var(--orange); border-color: var(--orange); }
.calendar-open {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.calendar-open:hover { color: var(--orange); border-color: var(--orange); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar-dow {
  text-align: center;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
}
.calendar-day {
  position: relative;
  min-height: 54px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.calendar-day.empty { border-color: transparent; background: transparent; }
.calendar-day.is-today { outline: 1px solid var(--muted); outline-offset: -1px; }
/* Día reservado: mismo color que la leyenda (rojo) */
.calendar-day.is-booked {
  border-color: rgba(212, 75, 46, 0.6);
  background-color: rgba(212, 75, 46, 0.16);
  color: #ffd9cc;
}
.calendar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background-color: var(--red);
  box-shadow: 0 0 8px rgba(212, 75, 46, 0.8);
}
.calendar-status {
  text-align: center;
  color: var(--muted);
  padding: 46px 10px;
}
.calendar-status.is-error { color: #ffb4a4; }
.calendar-status a { color: var(--orange); }

/* ── Aviso de cookies (DSGVO) ──────────────────────────── */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 350;
  background: rgba(10, 8, 7, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.55);
  padding: 18px 22px;
  display: none;
}
.cookie-banner.is-visible { display: block; animation: modalUp 0.35s var(--ease); }
.cookie-inner {
  max-width: 1160px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.9rem; color: var(--muted);
  max-width: 72ch;
  flex: 1 1 380px;
}
.cookie-text .text-link { color: var(--orange); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Animaciones de aparición ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalUp {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-portrait { width: min(400px, 38vw); margin-right: -3%; }
}

@media (max-width: 900px) {
  .hero-row { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-portrait {
    order: 1;
    justify-self: center;
    width: min(320px, 72vw);
    margin: 0 0 6px;
  }
  .hero-ring { top: 6%; right: -30%; }
  .badge { align-self: center; }
  .hero-tagline { margin-inline: auto; }
  .hero-cta { display: flex; justify-content: center; }
  .genres, .socials { justify-content: center; }
  .hero { align-items: flex-start; }

  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { margin-inline: auto; }
  .about-text { text-align: left; }

  .follow-icons { grid-template-columns: repeat(2, 1fr); }

  .main-nav {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 26px;
    background: rgba(8, 7, 6, 0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; }
  .main-nav a { font-size: 1.15rem; }
  .hamburger { display: flex; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .carousel-arrow { width: 38px; height: 38px; }
  .email-bar { justify-content: center; text-align: center; }
  .title-outline { -webkit-text-stroke-width: 1.6px; }
  .calendar-head { flex-wrap: wrap; }
  .calendar-head-right { margin-left: auto; }
}

/* ── Accesibilidad: menos movimiento ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
