/* ==========================================================================
   Eric Cowboy Carlson — official site
   Design system + components. One stylesheet, no build step.

   Contents
   01  Tokens
   02  Reset & base
   03  Typography
   04  Layout primitives
   05  Buttons & links
   06  Header / navigation
   07  Hero
   08  Ticker
   09  Cards & media
   10  Audio player
   11  Video
   12  Tour dates
   13  Quotes & stats
   14  Forms
   15  Footer
   16  Motion & utilities
   17  Responsive
   ========================================================================== */

/* 01  Tokens ============================================================== */
:root {
  /* Surfaces — warm near-blacks, never pure #000 */
  --black:      #080706;
  --ink:        #0e0c0a;
  --ink-2:      #14110f;
  --ink-3:      #1c1815;
  --ink-4:      #262019;

  /* Ink on dark */
  --bone:       #f5f0e7;
  --bone-2:     #cdc3b7;
  --bone-dim:   #948a7e;

  /* Accent — whiskey / stage amber */
  --amber:      #d99a3e;
  --amber-lit:  #f2c684;
  --amber-deep: #a56f22;
  --ember:      #c2551f;

  --line:       rgba(217, 154, 62, .18);
  --line-soft:  rgba(245, 240, 231, .09);

  /* Type */
  --display: "Bodoni Moda", "Playfair Display", "Didot", Georgia, "Times New Roman", serif;
  --cond:    "Oswald", "Barlow Condensed", "Haettenschweiler", Impact, sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --gutter:     clamp(1.25rem, 4vw, 3rem);
  --section:    clamp(4.5rem, 10vw, 9rem);
  --maxw:       1240px;
  --maxw-text:  62ch;

  --radius:     3px;
  --radius-lg:  6px;

  --shadow:     0 24px 60px -24px rgba(0, 0, 0, .9);
  --shadow-lift:0 34px 80px -28px rgba(0, 0, 0, .95);

  --ease:       cubic-bezier(.22, .61, .36, 1);
  --dur:        .45s;
}

/* 02  Reset & base ======================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .18vw, 1.075rem);
  line-height: 1.72;
  font-weight: 350;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Faint film grain over the whole document — sells the "cinematic" feel. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

img, svg, video { display: block; max-width: 100%; height: auto; }
picture { display: block; }

hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 3rem 0;
}

::selection { background: var(--amber); color: var(--black); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--amber);
  color: var(--black);
  padding: .75rem 1.25rem;
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* 03  Typography ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 7.5vw, 6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

p { margin: 0 0 1.3em; max-width: var(--maxw-text); }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.62;
  color: var(--bone-2);
  font-weight: 300;
}

/* Small caps section label with a hairline rule */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--cond);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: clamp(28px, 5vw, 56px);
  height: 1px;
  background: currentColor;
  opacity: .6;
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: clamp(28px, 5vw, 56px);
  height: 1px;
  background: currentColor;
  opacity: .6;
  flex: none;
}

.script {
  font-family: var(--display);
  font-style: italic;
  color: var(--amber-lit);
  font-weight: 400;
}

.muted { color: var(--bone-dim); }

/* Editable placeholder copy — deliberately visible so nothing fake ships.
   Underlines the text rather than filling a box, so this reads the same on a
   heading, a paragraph, or a word mid-sentence. */
.tbd {
  color: var(--amber-lit);
  font-style: normal;
  text-decoration: underline dashed rgba(217, 154, 62, .55);
  text-decoration-thickness: 1px;
  text-underline-offset: .28em;
}

/* 04  Layout primitives =================================================== */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--maxw));
  margin-inline: auto;
}
.wrap--narrow { --maxw: 900px; }
.wrap--wide   { --maxw: 1480px; }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Title block at the top of an interior page: clears the fixed header, then
   sits close to the content it introduces. */
.page-head {
  padding-top: calc(var(--section) + 3.5rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}
.page-head h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
.section--alt   { background: var(--ink-2); }
.section--deep  { background: var(--black); }

/* Hairline top border that fades at the edges */
.section--ruled { border-top: 1px solid transparent; }
.section--ruled::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 22%, var(--line) 78%, transparent);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
}
.section-head h2 { margin-bottom: 0; }
.section-head p  { margin-bottom: 0; }

.grid { display: grid; gap: clamp(1.25rem, 2.6vw, 2.25rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--media-left > .split__media { order: -1; }

.stack > * + * { margin-top: 1.15rem; }
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1rem;
  align-items: center;
}
.center { text-align: center; }
.center p, .center .lede { margin-inline: auto; }

/* 05  Buttons & links ===================================================== */
a { color: var(--amber-lit); text-decoration-color: rgba(242, 198, 132, .4); text-underline-offset: .25em; }
a:hover { color: #fff; }

.btn {
  --btn-bg: var(--amber);
  --btn-fg: #140f08;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--cond);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              transform .25s var(--ease), box-shadow var(--dur) var(--ease);
}
/* Wipe fill on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--amber-lit);
  transform: translateY(101%);
  transition: transform var(--dur) var(--ease);
}
.btn:hover, .btn:focus-visible {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(217, 154, 62, .8);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  border-color: rgba(245, 240, 231, .32);
}
.btn--ghost::before { background: var(--bone); }
.btn--ghost:hover, .btn--ghost:focus-visible {
  --btn-fg: #140f08;
  border-color: var(--bone);
  box-shadow: 0 14px 30px -14px rgba(245, 240, 231, .45);
}

.btn--sm { padding: .68rem 1.25rem; font-size: .76rem; letter-spacing: .16em; }
.btn--wide { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .4;
  pointer-events: none;
}

/* Underline-on-hover text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--cond);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--amber);
  padding-bottom: .3rem;
  border-bottom: 1px solid rgba(217, 154, 62, .3);
  transition: color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.link-arrow:hover { color: var(--bone); border-color: var(--bone); gap: .95rem; }
.link-arrow svg { width: 1em; height: 1em; }

/* 06  Header / navigation ================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease),
              border-color var(--dur) var(--ease), padding var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: .5rem;
}
.site-header.is-stuck {
  background: rgba(10, 9, 8, .86);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--bone);
  flex: none;
}
.brand img { width: 38px; height: 38px; }
.brand__name {
  font-family: var(--cond);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name span { display: block; font-size: .58rem; letter-spacing: .34em; color: var(--amber); margin-top: .35rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--cond);
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-2);
  text-decoration: none;
  position: relative;
  padding-block: .4rem;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--bone); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { flex: none; }

/* The Booking button lives in .nav__cta on desktop and inside the drawer list
   on mobile — never both at once. */
.nav__links > li:last-child { display: none; }

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bone);
  cursor: pointer;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform .35s var(--ease), opacity .2s linear;
}
.nav__toggle span { top: 50%; margin-top: -.75px; }
.nav__toggle span::before { content: ""; left: 0; transform: translateY(-6px); }
.nav__toggle span::after  { content: ""; left: 0; transform: translateY(6px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

/* 07  Hero =============================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-block: 9rem 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* Slow drift keeps a still image feeling alive */
  animation: heroDrift 32s var(--ease) infinite alternate;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 22% 40%, rgba(8,7,6,.20) 0%, rgba(8,7,6,.72) 58%, rgba(8,7,6,.94) 100%),
    linear-gradient(to top, var(--ink) 2%, rgba(14,12,10,.30) 42%, rgba(14,12,10,.55) 100%);
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.2%, -1.6%, 0); }
}

.hero__inner { position: relative; z-index: 1; max-width: 940px; }

/* Keep the hero eyebrow on one line where there's room; let it wrap on phones
   rather than running off the edge. */
@media (min-width: 700px) {
  .hero .eyebrow { white-space: nowrap; }
}
@media (max-width: 480px) {
  .hero .eyebrow { letter-spacing: .22em; font-size: .7rem; }
  .hero .eyebrow::before { width: 20px; }
}

.hero__name {
  font-family: var(--display);
  font-size: clamp(3rem, 11vw, 9.5rem);
  line-height: .88;
  letter-spacing: -.03em;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  text-shadow: 0 30px 70px rgba(0, 0, 0, .75);
}
.hero__name em {
  display: block;
  font-style: italic;
  text-transform: none;
  font-size: .46em;
  letter-spacing: -.01em;
  color: var(--amber-lit);
  margin: .12em 0;
  padding-left: .06em;
}
.hero__tagline {
  font-family: var(--cond);
  font-size: clamp(.82rem, 1.5vw, 1.02rem);
  font-weight: 300;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--bone-2);
  margin: 0 0 2.4rem;
  max-width: none;
}
.hero__actions { gap: 1rem 1.1rem; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  font-family: var(--cond);
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-decoration: none;
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .25; transform: scaleY(.55); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* 08  Ticker ============================================================= */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--black);
  overflow: hidden;
  padding-block: 1.15rem;
}
.ticker__track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: tickerScroll 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--cond);
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
}
.ticker__item::after {
  content: "\2605";
  color: var(--amber);
  font-size: .7rem;
  letter-spacing: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 09  Cards & media ====================================================== */
.card {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: var(--shadow-lift);
}
.card__body { padding: clamp(1.4rem, 2.4vw, 2rem); }
.card__title { font-size: 1.35rem; margin-bottom: .45rem; }
.card__meta {
  font-family: var(--cond);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .9rem;
}

/* Image frame with a hairline inset and hover zoom */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-3);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: screen;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
a:hover > .frame img,
.card:hover .frame img,
.frame:hover img { transform: scale(1.045); }

.frame--portrait { aspect-ratio: 4 / 5; }
.frame--square   { aspect-ratio: 1 / 1; }
.frame--wide     { aspect-ratio: 16 / 9; }
.frame--tall     { aspect-ratio: 3 / 4; }

/* Offset amber rule behind a feature image */
.frame--offset { position: relative; }
.frame--offset::before {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 62%;
  height: 62%;
  border-right: 1px solid var(--amber);
  border-bottom: 1px solid var(--amber);
  opacity: .5;
  z-index: -1;
  border-radius: 0 0 var(--radius-lg) 0;
}
.split__media { position: relative; z-index: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(.9rem, 1.6vw, 1.4rem);
}
.gallery > *:nth-child(4n + 1) { grid-row: span 2; }
.gallery .frame { height: 100%; }

/* 10  Audio player ======================================================= */
.player {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player__now {
  display: grid;
  grid-template-columns: clamp(120px, 22vw, 190px) 1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: clamp(1.3rem, 3vw, 2.1rem);
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.player__art {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-4);
}
.player__art img { width: 100%; height: 100%; object-fit: cover; }
.player__art::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: inherit;
}

.player__label {
  font-family: var(--cond);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .5rem;
}
.player__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.1;
  margin: 0 0 .35rem;
}
.player__sub {
  font-size: .92rem;
  color: var(--bone-dim);
  margin: 0 0 1.1rem;
}

/* Waveform scrubber — bars are generated in site.js */
.player__wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 56px;
  width: 100%;
  padding: 0;
  margin: 0 0 .55rem;
  background: none;
  border: 0;
  cursor: pointer;
  touch-action: none;
}
.player__wave b {
  display: block;
  flex: 1 1 auto;
  min-width: 2px;
  background: rgba(245, 240, 231, .17);
  border-radius: 1px;
  transition: background .18s linear, transform .18s var(--ease);
}
.player__wave b.is-played { background: var(--amber); }
.player__wave:hover b.is-played { background: var(--amber-lit); }
.player__wave b.is-cursor { transform: scaleY(1.18); }

.player__times {
  display: flex;
  justify-content: space-between;
  font-family: var(--cond);
  font-size: .74rem;
  letter-spacing: .14em;
  color: var(--bone-dim);
  margin-bottom: 1.15rem;
}

.player__controls { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }

.iconbtn {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .2s var(--ease);
}
.iconbtn:hover { background: rgba(217, 154, 62, .14); border-color: var(--amber); color: var(--amber-lit); }
.iconbtn:active { transform: scale(.94); }
.iconbtn svg { width: 17px; height: 17px; fill: currentColor; }
.iconbtn--play {
  width: 62px;
  height: 62px;
  background: var(--amber);
  border-color: var(--amber);
  color: #140f08;
}
.iconbtn--play:hover { background: var(--amber-lit); border-color: var(--amber-lit); color: #140f08; }
.iconbtn--play svg { width: 20px; height: 20px; }

.player__vol { display: flex; align-items: center; gap: .6rem; margin-left: auto; }
.player__vol input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 92px;
  height: 3px;
  border-radius: 2px;
  background: rgba(245, 240, 231, .2);
  cursor: pointer;
}
.player__vol input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--amber);
  border: 0;
  cursor: pointer;
}
.player__vol input[type="range"]::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--amber);
  border: 0;
  cursor: pointer;
}

/* Playlist */
.tracklist { list-style: none; margin: 0; padding: 0; }
.tracklist li { border-top: 1px solid var(--line-soft); }
.tracklist li:first-child { border-top: 0; }

.track {
  display: grid;
  grid-template-columns: 2.6rem 1fr auto auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem clamp(1.3rem, 3vw, 2.1rem);
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .3s var(--ease);
}
.track:hover { background: rgba(217, 154, 62, .06); }
.track__num {
  font-family: var(--cond);
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--bone-dim);
}
.track__name { font-weight: 400; letter-spacing: .01em; }
.track__note {
  display: block;
  font-size: .8rem;
  color: var(--bone-dim);
  margin-top: .15rem;
}
.track__tag {
  font-family: var(--cond);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .25rem .7rem;
  white-space: nowrap;
}
.track__time {
  font-family: var(--cond);
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--bone-dim);
  font-variant-numeric: tabular-nums;
}
.track[aria-current="true"] { background: rgba(217, 154, 62, .1); }
.track[aria-current="true"] .track__name { color: var(--amber-lit); }
.track[aria-current="true"] .track__num { color: var(--amber); }

/* Animated bars shown on the playing row */
.track__eq { display: none; align-items: flex-end; gap: 2px; height: 14px; }
.track[aria-current="true"] .track__eq { display: inline-flex; }
.track[aria-current="true"] .track__num { display: none; }
.track__eq i {
  width: 2.5px;
  background: var(--amber);
  height: 30%;
  animation: eq .9s ease-in-out infinite;
}
.track__eq i:nth-child(2) { animation-delay: .18s; }
.track__eq i:nth-child(3) { animation-delay: .36s; }
.track__eq i:nth-child(4) { animation-delay: .54s; }
.player.is-paused .track__eq i { animation-play-state: paused; }
@keyframes eq {
  0%, 100% { height: 25%; }
  50%      { height: 100%; }
}

.player__note {
  padding: 1rem clamp(1.3rem, 3vw, 2.1rem);
  border-top: 1px solid var(--line-soft);
  background: rgba(194, 85, 31, .1);
  font-size: .86rem;
  color: var(--bone-2);
}
.player__note[hidden] { display: none; }

/* 11  Video ============================================================== */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
}
.video img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.video:hover img { transform: scale(1.04); }
.video iframe, .video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(to top, rgba(8,7,6,.7), rgba(8,7,6,.12));
  transition: background .4s var(--ease);
}
.video:hover .video__play { background: linear-gradient(to top, rgba(8,7,6,.55), rgba(8,7,6,.05)); }
.video__play span {
  width: clamp(58px, 7vw, 78px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(217, 154, 62, .92);
  color: #140f08;
  box-shadow: 0 0 0 0 rgba(217, 154, 62, .45);
  transition: transform .35s var(--ease), background .35s var(--ease);
  animation: pulseRing 2.8s var(--ease) infinite;
}
.video:hover .video__play span { transform: scale(1.09); background: var(--amber-lit); }
.video__play svg { width: 40%; height: 40%; fill: currentColor; margin-left: 8%; }
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(217, 154, 62, .4); }
  70%  { box-shadow: 0 0 0 26px rgba(217, 154, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 154, 62, 0); }
}
.video__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  text-align: left;
  pointer-events: none;
}
.video__caption strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 500;
}
.video__caption span {
  font-family: var(--cond);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
}

/* 12  Tour dates ========================================================= */
.dates { list-style: none; margin: 0; padding: 0; }
.date {
  display: grid;
  grid-template-columns: 8.5rem 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .3s var(--ease);
}
.date:first-child { border-top: 1px solid var(--line-soft); }
.date:hover { border-color: var(--line); }
.date__when {
  font-family: var(--cond);
  line-height: 1.15;
}
.date__day {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--bone);
}
.date__mo {
  display: block;
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: .25rem;
}
.date__venue { font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.6rem); margin: 0 0 .2rem; }
.date__city {
  font-family: var(--cond);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.date__action { justify-self: end; }
.date--past { opacity: .45; }
.badge-soldout {
  font-family: var(--cond);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid rgba(194, 85, 31, .5);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  display: inline-block;
}

/* 13  Quotes & stats ===================================================== */
.quote {
  border-left: 2px solid var(--amber);
  padding: .3rem 0 .3rem 1.75rem;
}
.quote p {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--bone);
  margin-bottom: .9rem;
}
.quote cite {
  font-family: var(--cond);
  font-style: normal;
  font-size: .76rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--ink-2);
  padding: clamp(1.5rem, 3vw, 2.2rem) 1.25rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--amber-lit);
  margin-bottom: .55rem;
}
.stat__label {
  font-family: var(--cond);
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* Streaming service row */
.streams { display: flex; flex-wrap: wrap; gap: .75rem; }
.stream {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--cond);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-2);
  text-decoration: none;
  transition: color .3s var(--ease), border-color .3s var(--ease),
              background .3s var(--ease), transform .3s var(--ease);
}
.stream:hover {
  color: var(--black);
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-2px);
}
.stream svg { width: 16px; height: 16px; fill: currentColor; }

/* 14  Forms ============================================================== */
.form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: .5rem; }
.field--wide { grid-column: 1 / -1; }

.field label {
  font-family: var(--cond);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.field .req { color: var(--ember); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  background: var(--ink);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23d99a3e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 12px;
  padding-right: 2.6rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--ink-2);
}
.field input::placeholder, .field textarea::placeholder { color: #6a6058; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form__status {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: .92rem;
}
.form__status[hidden] { display: none; }
.form__status--ok  { border-color: rgba(217, 154, 62, .6); background: rgba(217, 154, 62, .1); }
.form__status--err { border-color: rgba(194, 85, 31, .6);  background: rgba(194, 85, 31, .1); }

/* Honeypot — hidden from people, visible to bots */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Contact detail list */
.contacts { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.75rem; }
.contacts dt, .contact__role {
  font-family: var(--cond);
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .35rem;
}
.contact__name { font-family: var(--display); font-size: 1.2rem; margin: 0 0 .2rem; }
.contact__line { color: var(--bone-2); font-size: .95rem; }

/* 15  Footer ============================================================= */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}
.footer__head {
  font-family: var(--cond);
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer__list a {
  color: var(--bone-2);
  text-decoration: none;
  font-size: .95rem;
  transition: color .3s var(--ease);
}
.footer__list a:hover { color: var(--amber-lit); }

.social { display: flex; gap: .7rem; flex-wrap: wrap; }
.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone-2);
  transition: color .3s var(--ease), border-color .3s var(--ease),
              background .3s var(--ease), transform .3s var(--ease);
}
.social a:hover {
  color: var(--black);
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-3px);
}
.social svg { width: 17px; height: 17px; fill: currentColor; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-size: .82rem;
  color: var(--bone-dim);
}
.footer__bottom a { color: var(--bone-dim); text-decoration: none; }
.footer__bottom a:hover { color: var(--amber-lit); }

/* Big call-to-action band */
.cta-band {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,7,6,.9), rgba(8,7,6,.78));
}

/* 16  Motion & utilities ================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

.no-js [data-reveal] { opacity: 1; transform: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__bg img { animation: none; transform: scale(1.04); }
}

/* 17  Responsive ========================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* The toggle has to sit above the drawer or its close state is unreachable. */
  .nav__toggle { display: block; position: relative; z-index: 2; }
  .nav__cta { display: none; }

  .nav__links {
    position: fixed;
    z-index: 1;
    inset: 0 0 0 auto;
    width: min(84vw, 380px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 5rem 2.25rem;
    background: rgba(8, 7, 6, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.2rem; letter-spacing: .22em; }
  .nav__links > li:last-child { display: block; margin-top: .5rem; }
  .nav__links .btn { font-size: .85rem; }

  body.nav-open { overflow: hidden; }

  .split { grid-template-columns: 1fr; }
  .split--media-left > .split__media { order: 0; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  .player__now { grid-template-columns: 1fr; }
  .player__art { max-width: 220px; }

  .date { grid-template-columns: 5.5rem 1fr; }
  .date__action { grid-column: 2; justify-self: start; }

  .gallery > *:nth-child(4n + 1) { grid-row: auto; }
}

@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .track { grid-template-columns: 2rem 1fr auto; }
  .track__tag { display: none; }
  .hero { min-height: 92svh; }
  .player__controls { justify-content: center; }
  .player__vol { display: none; }
}

/* Print — a clean one-pager if someone prints the EPK */
@media print {
  body { background: #fff; color: #000; }
  body::after, .site-header, .hero__bg, .video__play, .player, .ticker, .cta-band { display: none !important; }
  a { color: #000; }
  .section { padding-block: 1.5rem; }
}
