/* BOOKINK — marketing page styles (hero, services, stats, about, booking).
   Linked by index.html, find-artist.html, for-artists.html (after shared.css). */

:root {
  --ink: #0a0a0a;
  --paper: #f0ebe3;
  --red: #c8372d;
  --gold: #b89a5a;
  --muted: #5a5348;
  --line: rgba(240,235,227,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

[data-lang] { display: none !important; }
body.en [data-lang="en"] { display: block !important; }
body.es [data-lang="es"] { display: block !important; }
body.en span[data-lang="en"], body.en a[data-lang="en"] { display: inline !important; }
body.es span[data-lang="es"], body.es a[data-lang="es"] { display: inline !important; }
.hero-eyebrow span[data-lang] { display: none !important; }
body.en .hero-eyebrow span[data-lang="en"] { display: inline !important; }
body.es .hero-eyebrow span[data-lang="es"] { display: inline !important; }

.lang-toggle {
  position: fixed; top: 24px; right: 32px;
  z-index: 100; display: flex;
  border: 1px solid var(--line);
}
.lang-toggle button {
  background: transparent; border: none;
  color: var(--muted); font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; cursor: pointer; transition: all 0.25s;
}
.lang-toggle button.active { background: var(--paper); color: var(--ink); }
.lang-toggle button:not(.active):hover { color: var(--paper); }

nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center;
  padding: 20px 48px; z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--line);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 2px;
}
.logo .ink-part { color: var(--red); }
.logo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); margin: 0 1px 2px; display: inline-block;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  margin-left: auto; margin-right: 110px;
}
.nav-links a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); transition: color 0.25s;
}
.nav-links a:hover { color: var(--paper); }
.nav-cta {
  padding: 9px 22px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: all 0.25s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 100px 48px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 22vw, 400px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,235,227,0.05);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: -0.02em;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  line-height: 1.4;
  display: block;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 8vw, 130px);
  line-height: 0.92; letter-spacing: 0.01em; max-width: 900px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic; color: var(--gold); font-size: 0.85em;
}
.hero-sub {
  margin-top: 32px; max-width: 480px;
  font-size: clamp(13px, 1.6vw, 15px); line-height: 1.7;
  color: rgba(240,235,227,0.6); animation: fadeUp 0.8s 0.3s ease both;
}
.hero-cta {
  margin-top: 48px; display: flex; gap: 20px;
  align-items: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.btn-primary {
  display: inline-block; background: var(--red); color: var(--paper) !important;
  font-size: clamp(10px, 1.2vw, 12px); letter-spacing: 0.16em;
  text-transform: uppercase; padding: 18px 40px;
  transition: all 0.25s; font-weight: 500; border: none; cursor: pointer;
}
.btn-primary:hover { background: #a82e25; transform: translateY(-2px); }
.btn-ghost {
  display: inline-block; color: var(--muted);
  font-size: clamp(10px, 1.2vw, 12px); letter-spacing: 0.12em;
  text-transform: uppercase; transition: color 0.25s;
}
.btn-ghost:hover { color: var(--paper); }
.btn-ghost::after { content: ' \2192'; }

.hero-social {
  display: flex; gap: 16px; align-items: center;
  margin-top: 40px; animation: fadeUp 0.8s 0.55s ease both;
}
.hero-social a {
  width: 36px; height: 36px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.25s; border-radius: 2px;
}
.hero-social a:hover { border-color: var(--gold); color: var(--gold); }
.hero-social svg { width: 16px; height: 16px; fill: currentColor; }

.scroll-hint {
  position: absolute; right: 48px; bottom: 80px;
  writing-mode: vertical-rl; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 0.8s 0.6s ease both;
}
.scroll-hint::before {
  content: ''; width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--muted));
}

.marquee-wrap {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 14px 0; background: rgba(200,55,45,0.04);
}
.marquee-track {
  display: flex; animation: marquee 28s linear infinite; white-space: nowrap;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px;
  letter-spacing: 0.18em; color: var(--muted); padding: 0 40px; text-transform: uppercase;
}
.marquee-track span.accent { color: var(--red); padding: 0 10px; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.stat-item {
  padding: 56px 48px; border-right: 1px solid var(--line);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 72px); line-height: 1; }
.stat-num span { color: var(--red); }
.stat-label { margin-top: 10px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.value-props { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; }
.value-item {
  padding: 64px 56px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.value-item.visible { opacity: 1; transform: none; }
.value-item:nth-child(even) { border-right: none; }
.value-item:nth-child(3), .value-item:nth-child(4) { border-bottom: none; }
.value-item::before {
  content: attr(data-num); position: absolute; top: -20px; right: 32px;
  font-family: 'Bebas Neue', sans-serif; font-size: 120px;
  color: rgba(240,235,227,0.04); line-height: 1; pointer-events: none;
}
.value-item h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 3vw, 36px); letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 18px; }
.value-item p { font-size: 14px; line-height: 1.8; color: rgba(240,235,227,0.55); max-width: 340px; }
.value-item .icon { width: 38px; height: 38px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; color: var(--gold); font-size: 17px; }

.section-tag {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; width: 32px; height: 1px; background: var(--red); }

.services-section { background: #0d0d0d; padding: 120px 48px; }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 72px; align-items: end; }
.services-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 6vw, 88px); line-height: 0.95; }
.services-header p { font-size: 15px; line-height: 1.75; color: rgba(240,235,227,0.55); max-width: 400px; align-self: end; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.service-card {
  background: #0d0d0d; padding: 44px 36px;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s ease;
  position: relative; overflow: hidden;
}
.service-card.visible { opacity: 1; transform: none; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #111; }
.service-card-num { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 0.2em; color: var(--red); margin-bottom: 24px; }
.service-card-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 3vw, 36px); letter-spacing: 0.02em; line-height: 1.05; margin-bottom: 14px; }
.service-card-desc { font-size: 13px; line-height: 1.75; color: rgba(240,235,227,0.5); flex: 1; margin-bottom: 32px; }
.service-price-block { border-top: 1px solid var(--line); padding-top: 24px; }
.price-offer-tag { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.price-row { display: flex; align-items: baseline; gap: 12px; }
.price-main { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 48px); color: var(--gold); line-height: 1; }
.price-main span { font-size: 20px; }
.price-old { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--muted); text-decoration: line-through; line-height: 1; }
.price-notes { margin-top: 8px; }
.price-note { font-size: 11px; letter-spacing: 0.06em; color: var(--muted); line-height: 1.6; }
.price-note strong { color: rgba(240,235,227,0.45); font-weight: 400; }

.cities-band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 12px 0 16px; background: rgba(10,10,10,0.6);
  position: relative;
}
.cities-band::before, .cities-band::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.cities-band::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.cities-band::after { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.cities-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); text-align: center; padding: 0 0 10px;
  opacity: 0.4;
}
.cities-track {
  display: flex; animation: marquee 40s linear infinite; white-space: nowrap;
}
.cities-track span {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,235,227,0.28); padding: 0 28px;
}
.cities-track span.dot { color: var(--red); padding: 0 4px; font-size: 8px; }

.about-section { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.about-left { padding: 100px 56px; border-right: 1px solid var(--line); }
.about-right { padding: 100px 56px; background: rgba(184,154,90,0.03); display: flex; flex-direction: column; justify-content: center; }
.about-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px, 5vw, 72px); line-height: 0.95; margin-bottom: 32px; }
.about-left h2 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 0.9em; }
.about-left p { font-size: 15px; line-height: 1.8; color: rgba(240,235,227,0.6); margin-bottom: 16px; }
.team-card { background: rgba(240,235,227,0.04); border: 1px solid var(--line); padding: 28px; margin-bottom: 16px; }
.team-card:last-child { margin-bottom: 0; }
.team-role { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.team-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.04em; margin-bottom: 8px; }
.team-bio { font-size: 13px; line-height: 1.7; color: rgba(240,235,227,0.5); }

.cta-section {
  text-align: center; padding: 120px 48px;
  border-top: 1px solid var(--line); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,55,45,0.08) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 0.92; margin-bottom: 16px; position: relative;
}
.cta-section h2 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }
.cta-section > p {
  font-size: 15px; color: rgba(240,235,227,0.5);
  margin-bottom: 56px; max-width: 500px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7; position: relative;
}
.cta-social { display: flex; gap: 16px; justify-content: center; position: relative; }
.cta-social a { width: 40px; height: 40px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.25s; }
.cta-social a:hover { border-color: var(--gold); color: var(--gold); }
.cta-social svg { width: 18px; height: 18px; fill: currentColor; }

footer { border-top: 1px solid var(--line); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer p { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--muted); transition: color 0.25s; }
.footer-social a:hover { color: var(--paper); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; display: block; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hero {
    min-height: 100svh;
    padding: 72px 24px 56px;
    justify-content: center;
  }
  .hero-bg-text { display: none; }
  .scroll-hint { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); padding: 40px 24px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; padding: 48px 24px; }
  .value-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .services-section { padding: 80px 24px; }
  .services-header { grid-template-columns: 1fr; margin-bottom: 48px; }
  .service-cards { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-left { border-right: none; border-bottom: 1px solid var(--line); padding: 64px 24px; }
  .about-right { padding: 64px 24px; }
  .cta-section { padding: 80px 24px; }
  footer { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
}
@media (max-width: 500px) {
  .lang-toggle { top: 16px; right: 16px; }
}
