/* ===========================================================
   BAKH — site styles
   Palette: near-black / off-white / burnt amber accent
   Type: Anton (display) + Inter (body)
   =========================================================== */

:root {
  --bg:       #0a0a0c;
  --bg-2:     #0f0f12;
  --surface:  #15151a;
  --surface-2:#1c1c22;
  --text:     #f4f1ea;
  --muted:    #9a968e;
  --accent:   #e8772e;
  --accent-2: #ff9248;
  --line:     rgba(255,255,255,0.09);
  --maxw:     1180px;
  --r:        14px;
  --ease:     cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em { font-style: normal; color: var(--accent-2); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.wordmark {
  font-family: 'Anton', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  padding: 14px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #140a03; border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--text); }
.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,12,.82);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding-top: 12px; padding-bottom: 12px;
}
.site-header .wordmark { font-size: 1.45rem; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: .92rem; color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav a.btn { color: #140a03; }

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

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__media {
  position: absolute; inset: 0;
  background: url('assets/bakh-hero.jpg') no-repeat right 18% / cover;
  filter: grayscale(100%) contrast(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 8%, rgba(10,10,12,.78) 42%, rgba(10,10,12,.25) 72%, rgba(10,10,12,.55) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 28%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 120px 24px 80px; }
.hero__eyebrow { color: var(--accent); font-weight: 600; letter-spacing: .35em; text-transform: uppercase; font-size: .78rem; margin-bottom: 14px; }
.hero__name {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(5rem, 17vw, 12rem); line-height: .85; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero__tagline { max-width: 540px; font-size: clamp(1rem, 1.4vw, 1.18rem); color: #d8d4cc; }
.hero__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }
.hero__tags li {
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 16px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__social { display: flex; gap: 16px; margin-top: 34px; }
.hero__social a, .footer__links a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--muted);
  transition: color .25s, border-color .25s, transform .25s var(--ease);
}
.hero__social a:hover, .footer__links a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.ic { width: 19px; height: 19px; }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 24px; height: 40px; border: 2px solid var(--line); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--accent); border-radius: 2px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 34px; white-space: nowrap; padding: 18px 0; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: 1.4rem; color: #efece4; }
.marquee__track i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section__label { color: var(--accent); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; font-size: .76rem; margin-bottom: 16px; }
.section__title { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: .02em; line-height: 1; font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 26px; }
.section p { color: #cfccc4; max-width: 60ch; }
.section p + p { margin-top: 16px; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: start; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stat { background: var(--surface); padding: 26px 22px; }
.stat__num { font-family: 'Anton', sans-serif; font-size: 2.6rem; color: var(--accent); display: block; line-height: 1; }
.stat__label { display: block; margin-top: 8px; font-size: .82rem; color: var(--muted); line-height: 1.45; }
.countries { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--line); }
.countries span { font-size: .82rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.countries span:not(:last-child)::after { content: '·'; margin-left: 12px; color: var(--accent); }

/* ---------- Music ---------- */
.releases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 18px 0 56px; }
.release a { display: block; border-radius: var(--r); overflow: hidden; background: var(--surface); border: 1px solid var(--line); transition: transform .35s var(--ease), border-color .35s; }
.release a:hover { transform: translateY(-6px); border-color: var(--accent); }
.release img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform .6s var(--ease); }
.release a:hover img { transform: scale(1.05); }
.release__meta { padding: 16px 18px; }
.release__meta h3 { font-size: 1.1rem; }
.release__meta p { font-size: .82rem; color: var(--muted); margin-top: 2px; }
.players { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.player iframe { display: block; border: 0; width: 100%; border-radius: 12px; }

/* ---------- Release play label ---------- */
.release__play { display: inline-flex; align-items: center; gap: 6px; margin-top: 11px; font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }
.release__play .ic { width: 15px; height: 15px; }
.release a:hover .release__play { color: var(--accent-2); }

/* ---------- Shows ---------- */
.shows__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 6px 0 14px; }
.shows__head--past { margin-top: 50px; }
.shows__head h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); font-weight: 600; }
.shows__list { list-style: none; }
.show { display: flex; align-items: center; gap: 22px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.show:first-child { border-top: 1px solid var(--line); }
.show__date { flex: 0 0 86px; text-align: center; }
.show__day { display: block; font-family: 'Anton', sans-serif; font-size: 1.9rem; color: var(--accent); line-height: 1; }
.show__mon { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: 5px; }
.show__info { flex: 1; }
.show__info h4 { font-size: 1.12rem; }
.show__info p { font-size: .85rem; color: var(--muted); margin-top: 2px; }
.show--empty { opacity: .72; }
.show .btn { flex: 0 0 auto; }
@media (max-width: 620px) { .show { gap: 14px; padding: 16px 2px; } .show__date { flex-basis: 58px; } .show__day { font-size: 1.5rem; } }

/* ---------- Press ---------- */
.press { background: var(--bg-2); }
.press__grid { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: center; }
.press__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.press__featured { font-size: .9rem; color: var(--muted); }
.press__card { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.press__card img { width: 100%; filter: grayscale(100%); }

/* ---------- Forms ---------- */
.form label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.form input, .form textarea {
  width: 100%; margin-top: 7px; padding: 13px 15px; font: inherit; color: var(--text);
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px; transition: border-color .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form textarea { resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__status { min-height: 1.2em; font-size: .85rem; margin-top: 6px; color: var(--accent-2); }
.booking__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.booking__direct a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .2s; }
.booking__direct a:hover { border-color: var(--accent); }

/* ---------- Newsletter ---------- */
.newsletter { background: linear-gradient(120deg, #1a0f06, var(--surface)); border-top: 1px solid var(--line); }
.newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 64px 24px; }
.newsletter h2 { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1; }
.newsletter p { color: var(--muted); margin-top: 8px; }
.form--inline { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; position: relative; min-width: 340px; }
.form--inline input { width: auto; flex: 1; margin: 0; min-width: 220px; }
.form--inline .form__status { position: absolute; bottom: -26px; left: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 56px 0 30px; }
.footer__grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer__brand .wordmark { font-size: 2rem; }
.footer__brand p { color: var(--muted); font-size: .88rem; max-width: 40ch; margin-top: 8px; }
.footer__links { display: flex; gap: 14px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
.footer__bottom a { color: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; justify-content: center; align-items: flex-start; gap: 26px; padding: 40px; background: var(--surface); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .4s var(--ease); }
  .nav.open { transform: none; }
  .nav a { font-size: 1.1rem; color: var(--text); }
  .nav-toggle { display: flex; z-index: 60; }
  .about__grid, .press__grid, .booking__grid { grid-template-columns: 1fr; gap: 38px; }
  .players { grid-template-columns: 1fr; }
  .newsletter__inner { flex-direction: column; align-items: flex-start; }
  .form--inline { width: 100%; min-width: 0; }
}
@media (max-width: 620px) {
  .releases { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__inner { padding-top: 110px; }
  .hero__media { background-position: right 30%; opacity: .9; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
