/* ============================================================
   The Unplugged Band, theunpluggedband.com
   Developed & managed by Jay Kadam
   ============================================================ */

:root {
  --yellow: #fff952;
  --yellow-deep: #f2e02b;
  --yellow-soft: rgba(255, 249, 82, 0.14);
  --ink: #0b0b0f;
  --ink-2: #121218;
  --ink-3: #1a1a22;
  --line: rgba(255, 249, 82, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f4f2;
  --text-dim: #a8a8a6;
  --radius: 18px;
  --radius-sm: 12px;
  --shell: min(1180px, 90vw);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Anton", "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --font-script: "Caveat", cursive;
}

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

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

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--yellow); color: var(--ink); }

.container { width: var(--shell); margin-inline: auto; }
.text-accent { color: var(--yellow); }

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 999;
  background: var(--yellow); color: var(--ink);
  padding: 10px 18px; border-radius: 0 0 10px 10px; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 9998; opacity: 0.035;
  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='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.6s steps(2) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-2%, 1%); }
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--ink);
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; justify-items: center; gap: 22px; }
.preloader__logo {
  width: 108px; height: 108px; border-radius: 50%;
  animation: discSpin 2.2s linear infinite;
  box-shadow: 0 0 60px rgba(255, 249, 82, 0.28);
}
/* Record on a turntable: one continuous revolution, constant speed. */
@keyframes discSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.preloader__bars { display: flex; gap: 5px; align-items: flex-end; height: 30px; }
.preloader__bars span {
  width: 4px; background: var(--yellow); border-radius: 2px;
  animation: eq 1s ease-in-out infinite;
}
.preloader__bars span:nth-child(1) { animation-delay: 0s; }
.preloader__bars span:nth-child(2) { animation-delay: 0.15s; }
.preloader__bars span:nth-child(3) { animation-delay: 0.3s; }
.preloader__bars span:nth-child(4) { animation-delay: 0.45s; }
.preloader__bars span:nth-child(5) { animation-delay: 0.6s; }
@keyframes eq {
  0%, 100% { height: 8px; opacity: 0.5; }
  50%      { height: 28px; opacity: 1; }
}
.preloader__text {
  font-family: var(--font-display);
  letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 0.8rem; color: var(--text-dim);
}
.dots::after { content: ""; animation: dots 1.4s steps(4) infinite; }
@keyframes dots {
  0% { content: ""; } 25% { content: "."; }
  50% { content: ".."; } 75% { content: "..."; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
  padding: 14px 0;
}
.nav.is-stuck {
  background: rgba(11, 11, 15, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
  padding: 8px 0;
}
.nav__inner {
  width: var(--shell); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img {
  width: 46px; height: 46px; border-radius: 50%;
  transition: transform 0.5s var(--ease);
  box-shadow: 0 0 0 1px var(--line);
}
.nav__brand:hover img { transform: rotate(-10deg) scale(1.06); }
.nav__brand-text { display: grid; line-height: 1.15; }
.nav__brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.nav__brand-text em {
  font-family: var(--font-script);
  font-style: normal; font-size: 0.85rem; color: var(--yellow);
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  position: relative; padding: 9px 14px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 500; color: var(--text-dim);
  transition: color 0.25s, background 0.25s;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav__links .nav__cta {
  background: var(--yellow); color: var(--ink); font-weight: 700;
  margin-left: 8px; padding: 10px 22px;
}
.nav__links .nav__cta:hover {
  background: #fff; color: var(--ink);
  box-shadow: 0 8px 26px rgba(255, 249, 82, 0.3);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 12px; border: 1px solid var(--line-soft);
}
.nav__toggle span {
  display: block; width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s;
  will-change: transform;
}
.btn--primary {
  background: var(--yellow); color: var(--ink);
  box-shadow: 0 10px 34px rgba(255, 249, 82, 0.22);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(255, 249, 82, 0.36);
  background: #fffd8f;
}
.btn--ghost {
  border: 1px solid var(--line); color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover {
  border-color: var(--yellow); color: var(--yellow);
  transform: translateY(-3px); background: var(--yellow-soft);
}
.btn--block { width: 100%; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: clamp(62px, 8vw, 104px) 0; position: relative; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(44px, 6vw, 70px); }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.06; letter-spacing: 0.01em; text-transform: uppercase;
  margin-bottom: 18px;
}
.section__lead { color: var(--text-dim); font-size: 1.03rem; }
.section__lead a { color: var(--yellow); border-bottom: 1px solid var(--line); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 118px 0 96px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
}
.hero__blob--1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(255, 249, 82, 0.34), transparent 68%);
  top: -12%; right: -8%;
  animation: float1 16s ease-in-out infinite;
}
.hero__blob--2 {
  width: 40vw; height: 40vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, rgba(255, 249, 82, 0.16), transparent 70%);
  bottom: -14%; left: -10%;
  animation: float2 20s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, 40px) scale(1.1); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, -30px) scale(1.08); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%);
}

.hero__content { position: relative; z-index: 2; max-width: 760px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--yellow-soft);
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 20px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 249, 82, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 249, 82, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 249, 82, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 249, 82, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9.2vw, 6.4rem);
  line-height: 0.86; letter-spacing: 0.005em; text-transform: uppercase;
  margin-bottom: 10px;
}
.hero__title .line { display: block; }
.hero__title .line--accent {
  color: var(--yellow);
  text-shadow: 0 0 60px rgba(255, 249, 82, 0.32);
}

.hero__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  color: var(--yellow); margin-bottom: 16px;
}
.hero__sub { color: var(--text-dim); font-size: 1.02rem; max-width: 520px; margin-bottom: 26px; }
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 54px); }
.stat { display: grid; gap: 2px; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--yellow); line-height: 1;
}
.stat__label {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim);
}

.hero__logo-wrap {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  z-index: 1; pointer-events: none;
}
.hero__logo {
  width: clamp(300px, 34vw, 500px); border-radius: 50%;
  opacity: 0.92;
  filter: drop-shadow(0 0 80px rgba(255, 249, 82, 0.3));
  /* Slow, constant-speed revolution: a record on the deck rather than a float. */
  animation: discSpin 18s linear infinite;
}

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: grid; justify-items: center; gap: 8px;
  color: var(--text-dim); font-size: 0.72rem;
  letter-spacing: 0.24em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--yellow));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--yellow); color: var(--ink);
  padding: 15px 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 30px;
  width: max-content;
  animation: marquee 34s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__dot { font-size: 0.7em; opacity: 0.55; }
@keyframes marquee {
  from { transform: translateX(0); } to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(38px, 6vw, 80px); align-items: center;
}
.about__visual { position: relative; }
.about__disc {
  position: relative; border-radius: 50%; overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line);
  transition: transform 0.6s var(--ease);
}
.about__disc::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.25), transparent 55%);
  pointer-events: none;
}
.about__visual:hover .about__disc { transform: rotate(6deg) scale(1.02); }
.about__badge {
  position: absolute; right: -6px; bottom: 8px;
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: 16px; padding: 12px 20px; text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}
.about__badge span {
  display: block; font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-dim);
}
.about__badge strong {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--yellow);
  letter-spacing: 0.04em;
}
.about__text .section__title { text-align: left; }
.about__text .section__eyebrow { text-align: left; }
.about__text > p { color: var(--text-dim); margin-bottom: 18px; }
.about__text > p strong { color: var(--text); font-weight: 600; }
.about__points { display: grid; gap: 12px; margin-top: 28px; }
.about__points li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-dim); font-size: 0.97rem;
}
.tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--yellow-soft); border: 1px solid var(--line);
  color: var(--yellow); font-size: 0.85rem;
}

/* ============================================================
   BAND MEMBERS
   ============================================================ */
.band { background: linear-gradient(180deg, transparent, rgba(255, 249, 82, 0.028), transparent); }
.band__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 22px;
}
.member {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 24px 24px;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.member::before {
  content: attr(data-role);
  position: absolute; top: 14px; right: -34px;
  transform: rotate(38deg);
  font-family: var(--font-display); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 249, 82, 0.14);
  pointer-events: none;
}
.member::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 249, 82, 0.09), transparent 62%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.member:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
}
.member:hover::after { opacity: 1; }

.member__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.member__avatar {
  position: relative; width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--yellow-soft); border: 1px solid var(--line);
  color: var(--yellow);
  transition: background 0.4s, transform 0.4s var(--ease);
}
.member__avatar svg { width: 27px; height: 27px; }
.member:hover .member__avatar { background: var(--yellow); color: var(--ink); transform: rotate(-6deg); }
.member__tag {
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-soft);
  color: var(--text-dim);
}
.member__tag--alt { background: var(--yellow); color: var(--ink); border-color: transparent; font-weight: 700; }

.member__name {
  font-family: var(--font-display); font-size: 1.45rem;
  letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.1;
}
.member__role {
  color: var(--yellow); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em; margin: 4px 0 12px;
}
.member__bio { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 18px; }
.member__links { display: grid; gap: 8px; }
.member__links a {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.85rem; color: var(--text-dim);
  padding: 8px 12px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
}
.member__links a:hover {
  color: var(--yellow); background: var(--yellow-soft);
  border-color: var(--line); transform: translateX(3px);
}
.member--manager { border-color: var(--line); background: linear-gradient(160deg, #1a1a10, var(--ink-3)); }

.band__note {
  text-align: center; margin-top: 34px;
  color: var(--text-dim); font-family: var(--font-script); font-size: 1.25rem;
}

/* ============================================================
   SOUND / SERVICE CARDS
   ============================================================ */
.sound__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px;
}
.card {
  position: relative; overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--yellow); transition: width 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--line); background: var(--ink-3); }
.card:hover::before { width: 100%; }
.card__icon {
  font-size: 2rem; margin-bottom: 16px;
  transition: transform 0.45s var(--ease);
}
.card:hover .card__icon { transform: scale(1.15) rotate(-8deg); }
.card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 10px;
}
.card p { color: var(--text-dim); font-size: 0.93rem; margin-bottom: 16px; }
.card ul { display: grid; gap: 7px; }
.card li {
  font-size: 0.85rem; color: var(--text-dim);
  padding-left: 18px; position: relative;
}
.card li::before {
  content: "▸"; position: absolute; left: 0; color: var(--yellow);
}

/* ============================================================
   TIMELINE / GIGS
   ============================================================ */
.timeline { position: relative; max-width: 830px; margin-inline: auto; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--yellow), rgba(255, 249, 82, 0.12));
}
.timeline__item { position: relative; padding-bottom: 38px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute; left: -34px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 249, 82, 0.1);
  transition: background 0.4s, box-shadow 0.4s;
}
.timeline__item:hover .timeline__marker {
  background: var(--yellow); box-shadow: 0 0 0 8px rgba(255, 249, 82, 0.16);
}
.timeline__body {
  background: var(--ink-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 22px 24px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.timeline__item:hover .timeline__body { transform: translateX(6px); border-color: var(--line); }
.timeline__year {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--yellow);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
}
.timeline__body h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 8px;
}
.timeline__body p { color: var(--text-dim); font-size: 0.93rem; margin-bottom: 10px; }
.timeline__place {
  font-size: 0.8rem; color: var(--yellow);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============================================================
   GALLERY / INSTAGRAM EMBEDS
   ============================================================ */
.gallery { background: linear-gradient(180deg, transparent, rgba(255, 249, 82, 0.028), transparent); }
.gallery__embeds {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; align-items: start;
}
.gallery__embeds .instagram-media {
  margin: 0 !important; min-width: 0 !important; width: 100% !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}
.gallery__cta { text-align: center; margin-top: 42px; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "intro form"
    "aside form";
  gap: clamp(36px, 6vw, 70px); align-items: start;
  column-gap: clamp(36px, 5vw, 64px);
}
.booking__intro { grid-area: intro; }
.booking__aside { grid-area: aside; }
.booking__form  { grid-area: form; }

.booking__intro .section__title,
.booking__intro .section__eyebrow { text-align: left; }
.booking__intro > p { color: var(--text-dim); }

.booking__aside-title {
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 12px;
}
.btn--call {
  width: 100%; justify-content: center; margin-bottom: 18px;
  background: transparent; color: var(--yellow);
  border: 1.5px solid var(--yellow);
}
.btn--call:hover { background: var(--yellow); color: var(--ink); }

.booking__contacts { display: grid; gap: 12px; }
.contact-card {
  display: grid; gap: 3px; padding: 17px 20px;
  background: var(--ink-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.contact-card:hover {
  transform: translateX(6px); border-color: var(--yellow); background: var(--ink-3);
}
.contact-card__label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim);
}
.contact-card__value {
  font-family: var(--font-display); font-size: 1.15rem;
  letter-spacing: 0.03em; color: var(--yellow);
}

.booking__form {
  background: var(--ink-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: clamp(24px, 3.5vw, 34px);
  display: grid; gap: 16px;
}
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
}
.field input, .field select, .field textarea {
  background: var(--ink); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 13px 15px;
  color: var(--text); font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 249, 82, 0.12);
}
.field input::placeholder, .field textarea::placeholder { color: #5c5c60; }
.field input.is-invalid, .field textarea.is-invalid { border-color: #ff6b6b; }
.field select option { background: var(--ink-2); }
.booking__form-note { font-size: 0.78rem; color: var(--text-dim); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  padding-top: clamp(48px, 6vw, 72px);
}
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px); padding-bottom: 46px;
}
.footer__brand { display: flex; gap: 18px; align-items: flex-start; }
.footer__brand img { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; }
.footer__brand strong {
  display: block; font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.footer__brand em {
  display: block; font-family: var(--font-script); font-style: normal;
  font-size: 1.1rem; color: var(--yellow); margin-bottom: 10px;
}
.footer__brand p { color: var(--text-dim); font-size: 0.9rem; }

.footer h4 {
  font-family: var(--font-display); font-size: 0.82rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.footer__nav, .footer__contact { display: grid; gap: 9px; align-content: start; }
.footer__nav a, .footer__contact a {
  color: var(--text-dim); font-size: 0.92rem; width: fit-content;
  transition: color 0.25s, transform 0.25s;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--yellow); transform: translateX(4px); }

.footer__bar { border-top: 1px solid var(--line-soft); padding: 22px 0; }
.footer__bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.footer__copy { color: var(--text-dim); font-size: 0.85rem; }
.footer__credit { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.footer__credit-label { color: var(--text-dim); }
.footer__dev {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 6px; border-radius: 999px;
  background: rgba(255, 249, 82, 0.07); border: 1px solid var(--line);
}
.footer__dev-mark {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.04em;
}
.footer__dev strong { color: var(--yellow); font-weight: 600; letter-spacing: 0.02em; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--yellow); color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px) scale(1.06); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1000px; margin-inline: auto;
}
.areas__card {
  padding: 26px 28px; background: var(--ink-2);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.areas__card:hover { transform: translateY(-4px); border-color: var(--line); }
.areas__card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.areas__list { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; }
.areas__list li {
  position: relative; padding-left: 15px;
  color: var(--text-dim); font-size: 0.9rem;
}
.areas__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); opacity: 0.7;
}
.areas__note {
  text-align: center; color: var(--text-dim);
  margin-top: 26px; font-size: 0.95rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--ink-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 19px 54px 19px 24px; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 {
  display: inline; font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; color: var(--text);
}
.faq__item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%;
  width: 9px; height: 9px; margin-top: -6px;
  border-right: 2px solid var(--yellow); border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg); transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__item summary:hover h3 { color: var(--yellow); }
.faq__item > p {
  padding: 0 24px 22px; color: var(--text-dim); line-height: 1.72;
}
.faq__item > p a { color: var(--yellow); border-bottom: 1px solid var(--line); }

/* ============================================================
   STORY TEASER (home page)
   ============================================================ */
.story-teaser { padding: clamp(50px, 6vw, 76px) 0; }
.story-teaser__inner {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: clamp(26px, 4vw, 54px);
  padding: clamp(30px, 4vw, 48px) clamp(26px, 4vw, 52px);
  background: linear-gradient(120deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line); border-radius: var(--radius);
}
.story-teaser__inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 88% 50%, var(--yellow-soft), transparent 70%);
  pointer-events: none;
}
.story-teaser__body { position: relative; z-index: 1; }
.story-teaser__eyebrow {
  font-family: var(--font-display); font-size: 0.76rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.story-teaser h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.06;
  letter-spacing: 0.01em; text-transform: uppercase; margin-bottom: 14px;
}
.story-teaser p { color: var(--text-dim); max-width: 60ch; margin-bottom: 22px; }
.story-teaser__disc { position: relative; z-index: 1; width: clamp(96px, 13vw, 150px); }
.story-teaser__disc img {
  width: 100%; border-radius: 50%;
  animation: discSpin 18s linear infinite;
  filter: drop-shadow(0 0 40px rgba(255, 249, 82, 0.28));
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-hero {
  position: relative; overflow: hidden;
  padding: clamp(140px, 17vw, 210px) 0 clamp(56px, 7vw, 84px);
}
.story-hero__bg { position: absolute; inset: 0; z-index: 0; }
.story-hero__inner { position: relative; z-index: 2; max-width: 900px; }
.story-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow);
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(255, 249, 82, 0.05); margin-bottom: 26px;
}
.story-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.3rem, 7vw, 5rem); line-height: 0.94;
  letter-spacing: 0.005em; text-transform: uppercase; margin-bottom: 26px;
}
.story-hero__title .line { display: block; }
.story-hero__title .line--accent { color: var(--yellow); }
.story-hero__lede {
  font-size: clamp(1.02rem, 1.7vw, 1.22rem); max-width: 62ch;
  line-height: 1.62; margin-bottom: 14px;
}
.story-hero__note { color: var(--text-dim); max-width: 62ch; margin-bottom: 40px; }
.story-hero__stats { display: flex; flex-wrap: wrap; gap: 26px 46px; }

.story__wrap { max-width: 780px; }
.story__chapter { padding-bottom: clamp(40px, 5vw, 62px); }
.story__chapter:last-child { padding-bottom: 0; }
.story__year {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--yellow);
  padding: 5px 13px; border-radius: 100px; margin-bottom: 16px;
}
.story__chapter h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.35rem); line-height: 1.08;
  text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 18px;
}
.story__chapter p { color: var(--text-dim); margin-bottom: 16px; line-height: 1.75; }
.story__chapter p:last-child { margin-bottom: 0; }
.story__beat {
  color: var(--text) !important; font-weight: 500;
  font-size: 1.06rem; padding-left: 16px;
  border-left: 2px solid var(--yellow);
}
.story__quote {
  margin: 26px 0; padding: 22px 26px;
  background: var(--ink-2); border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.story__quote p {
  font-family: var(--font-script); font-size: clamp(1.35rem, 3vw, 1.9rem);
  color: var(--yellow) !important; margin: 0 !important; line-height: 1.3;
}
.story__list { list-style: none; margin: 4px 0 20px; display: grid; gap: 9px; }
.story__list li {
  position: relative; padding-left: 26px; color: var(--text-dim);
}
.story__list li::before {
  content: "♪"; position: absolute; left: 0; top: 0; color: var(--yellow);
}

/* thank you */
.thanks { background: var(--ink-2); border-block: 1px solid var(--line-soft); }
.thanks__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; max-width: 940px; margin-inline: auto;
}
.thanks__card {
  padding: 26px 28px; background: var(--ink); border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.thanks__card:hover { transform: translateY(-4px); border-color: var(--line); }
.thanks__card--wide { grid-column: 1 / -1; }
.thanks__tag {
  display: block; font-family: var(--font-display);
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.thanks__card p { color: var(--text-dim); line-height: 1.72; margin-bottom: 14px; }
.thanks__card p:last-child { margin-bottom: 0; }

/* closing */
.story-close__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.story-close__logo {
  width: 108px; border-radius: 50%; margin-bottom: 28px;
  animation: discSpin 18s linear infinite;
  filter: drop-shadow(0 0 50px rgba(255, 249, 82, 0.3));
}
.story-close h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 4.2vw, 3rem); line-height: 1.06;
  text-transform: uppercase; margin-bottom: 22px;
}
.story-close p { color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }
.story-close__sign {
  font-family: var(--font-script); font-size: clamp(1.4rem, 3.2vw, 2rem);
  color: var(--yellow) !important; margin: 26px 0 34px !important;
}
.story-close__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 340px; margin-inline: auto; }
  .areas__grid { grid-template-columns: 1fr 1fr; }
  .story-teaser__inner { grid-template-columns: 1fr; text-align: center; }
  .story-teaser p { margin-inline: auto; }
  .story-teaser__disc { order: -1; margin-inline: auto; }
  /* Single column: put the enquiry form directly under the heading so the
     "Book the band" CTA lands on it, with the phone numbers below. */
  .booking__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "form"
      "aside";
    gap: 30px;
  }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__logo { opacity: 0.18; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 76px; }
  .nav__toggle { display: flex; }
  .nav__brand, .nav__toggle { position: relative; z-index: 2; }
  .nav__links {
    position: fixed; inset: 0 0 auto; top: 0; z-index: 1;
    flex-direction: column; justify-content: center; gap: 6px;
    height: 100svh; padding: 80px 30px 40px;
    background: rgba(11, 11, 15, 0.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transform: translateY(-100%); transition: transform 0.5s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { font-size: 1.35rem; font-family: var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 26px; }
  .nav__links .nav__cta { margin: 12px 0 0; }
  .nav__brand-text em { display: none; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero__logo-wrap { right: -20%; }
  .hero__scroll { display: none; }
}

@media (max-width: 620px) {
  :root { --shell: 90vw; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { flex-direction: column; }
  .footer__bar-inner { flex-direction: column; text-align: center; }
  /* Primary CTA full width; "Call now" and "Watch us live" share the row below. */
  .hero__actions { gap: 10px; }
  .hero__actions .btn--primary { flex: 1 1 100%; }
  .hero__actions .btn--ghost { flex: 1 1 calc(50% - 5px); justify-content: center; }
  .hero__stats { gap: 20px 34px; }
  .timeline { padding-left: 28px; }
  .timeline__marker { left: -28px; width: 15px; height: 15px; }
  .to-top { right: 14px; bottom: 14px; }
  .thanks__grid { grid-template-columns: 1fr; }
  .story-hero__stats { gap: 18px 30px; }
  .story-close__actions .btn { flex: 1 1 100%; justify-content: center; }
  .areas__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
