/* ============================================================
   KICK ASS · kickass.live · Site Stylesheet
   Fonts loaded via <link> in index.html head (Anton, Archivo)
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --ink: #0a0a0b;
  --ink-2: #101012;
  --ink-3: #17171a;
  --bone: #f4efe4;
  --bone-dim: rgba(244, 239, 228, .62);
  --bone-faint: rgba(244, 239, 228, .28);
  --flare: #ff3b22;
  --ember: #ff9a3c;
  --line: rgba(244, 239, 228, .12);
  --kalogo: url("images/kalogo.jpg");
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Archivo', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Dot grid texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(rgba(244, 239, 228, .05) 1px, transparent 1.4px);
  background-size: 5px 5px;
}

/* Film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(10, 10, 11, .9), rgba(10, 10, 11, 0));
}

.logo {
  height: 52px;
  aspect-ratio: 340 / 305;
  background: var(--kalogo) center / contain no-repeat;
  mix-blend-mode: screen;
  display: block;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.nav-contact {
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-contact:hover {
  color: var(--flare);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 28px 48px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15%;
  right: -18%;
  width: 78vw;
  height: 78vw;
  max-width: 880px;
  max-height: 880px;
  background: radial-gradient(circle at center, rgba(255, 59, 34, .30), rgba(255, 154, 60, .07) 38%, transparent 64%);
  filter: blur(10px);
}

.hero-logo {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(44vw, 540px);
  aspect-ratio: 340 / 305;
  background: var(--kalogo) center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: .5;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero-logo {
    opacity: .16;
    right: -22%;
  }
}

.kicker {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--flare);
  margin-bottom: 24px;
  opacity: 0;
  animation: rise .8s .1s forwards;
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 9.4vw, 134px);
  line-height: .9;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin-bottom: 48px;
  max-width: 14ch;
}

.hero h1 .l {
  display: block;
  opacity: 0;
  animation: rise .9s forwards;
}

.hero h1 .l:nth-child(1) { animation-delay: .16s; }
.hero h1 .l:nth-child(2) { animation-delay: .28s; }
.hero h1 .l:nth-child(3) { animation-delay: .40s; }

.hero h1 em {
  font-style: normal;
  color: var(--flare);
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .08em;
  height: .07em;
  background: var(--flare);
  transform: scaleX(0);
  transform-origin: left;
  animation: swipe .6s .9s forwards;
}

.lede {
  font-size: clamp(17px, 2.1vw, 22px);
  color: var(--bone-dim);
  max-width: 52ch;
  font-weight: 500;
  margin-bottom: 14px;
  opacity: 0;
  animation: rise .9s .54s forwards;
}

.credit {
  font-size: 22px;
  color: var(--bone-faint);
  font-weight: 600;
  margin-bottom: 38px;
  opacity: 0;
  animation: rise .9s .64s forwards;
}

.credit b {
  color: var(--bone);
}

.credit .rs {
  color: var(--flare);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise .9s .74s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 30px;
  text-decoration: none;
  border-radius: 2px;
  transition: transform .2s, background .2s;
}

.btn-solid {
  background: var(--flare);
  color: #160301;
}

.btn-solid:hover {
  transform: translateY(-3px);
  background: #ff5238;
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 96s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.mq-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee span.mq-set {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--bone);
}

.marquee i {
  color: var(--flare);
  font-style: normal;
  padding: 0 26px;
}

/* ---------- Section shell ---------- */
section.block {
  padding: 52px 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--flare);
  margin-bottom: 20px;
}

.eyebrow-center {
  text-align: center;
}

h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: -.005em;
}

/* ---------- Rolling Stone band ---------- */
.rsband {
  border-left: 4px solid var(--flare);
  padding: 8px 0 8px 38px;
}

@media (max-width: 600px) {
  .rsband {
    padding-left: 24px;
  }
}

.rsband .big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 5vw, 60px);
  line-height: .98;
  text-transform: uppercase;
}

.rsband .big em {
  font-style: normal;
  color: var(--flare);
}

.rsband p {
  color: var(--bone-dim);
  font-size: 18px;
  margin-top: 18px;
  max-width: 54ch;
  font-weight: 500;
}

/* ---------- Productions list (currently unused, kept for future) ---------- */
.prod-list {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.prod {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s;
}

.prod:hover {
  padding-left: 14px;
}

.prod .name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 5.4vw, 60px);
  text-transform: uppercase;
  line-height: .92;
  transition: color .2s;
}

.prod:hover .name {
  color: var(--flare);
}

.prod .meta {
  color: var(--bone-dim);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: right;
  white-space: nowrap;
}

.prod.ph .name {
  color: var(--bone-faint);
}

.prod.ph .meta {
  color: var(--bone-faint);
}

.prod-note {
  color: var(--bone-faint);
  font-size: 13px;
  font-weight: 600;
  margin-top: 22px;
}

/* ---------- Services ---------- */
.services {
  background: var(--ink-2);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 54px;
  border: 1px solid var(--line);
}

@media (max-width: 760px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc {
  background: var(--ink-2);
  padding: 42px 38px;
  position: relative;
  transition: background .25s;
}

.svc:hover {
  background: var(--ink-3);
}

.svc .num {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  color: var(--flare);
  letter-spacing: .1em;
}

.svc h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin: 14px 0 12px;
}

.svc p {
  color: var(--bone-dim);
  font-size: 15.5px;
  max-width: 42ch;
}

.svc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--flare);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s;
}

.svc:hover::before {
  transform: scaleY(1);
}

/* ---------- Live shows / ticket widget ---------- */
.liveshows {
  text-align: center;
}

.ls-ph {
  margin-top: 46px;
  border: 1px dashed var(--bone-faint);
  border-radius: 6px;
  padding: 78px 30px;
  background: linear-gradient(180deg, var(--ink-2), rgba(16, 16, 18, .4));
  color: var(--bone-faint);
}

.ls-ph .big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--bone-dim);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.ls-ph .small {
  font-size: 13px;
  font-weight: 600;
  max-width: 46ch;
  margin: 12px auto 0;
}

#ticket-widget {
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 0 28px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 4.4vw, 44px);
  text-transform: uppercase;
  color: var(--bone-dim);
  letter-spacing: .02em;
  text-align: center;
}

.event-listing-embed {
  display: block;
  width: 100%;
  border: 0;
}

/* ---------- Background / about ---------- */
.bg-sec {
  background: var(--ink-2);
}

.about {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about p {
  color: var(--bone-dim);
  font-size: 16.5px;
  margin-top: 22px;
  max-width: 52ch;
}

.about p b {
  color: var(--bone);
  font-weight: 600;
}

.photo-ph {
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--bone-faint);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  color: var(--bone-faint);
  font-size: 13px;
  font-weight: 600;
  padding: 24px;
}

/* Modifier: photo slot holding a real image (no dashed border, no padding) */
.photo-frame {
  padding: 0;
  border: none;
  overflow: hidden;
}

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facts {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.fact {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fact .n {
  font-family: 'Anton', sans-serif;
  font-size: 34px;
  color: var(--flare);
  line-height: 1;
}

/* Modifier: word-based stat (e.g. "Rolling Stone") sized down to fit */
.fact .n-word {
  font-size: 26px;
}

.fact .t {
  color: var(--bone-dim);
  font-size: 14.5px;
  font-weight: 500;
}

.fact .t b {
  color: var(--bone);
  font-weight: 700;
}

.bgline {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.bgline-lab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--flare);
  white-space: nowrap;
}

.bgline-items {
  display: flex;
  gap: 12px 24px;
  flex-wrap: wrap;
}

.bgline-items span {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.bgline-items span.rs {
  color: #ffffff;
}

/* ---------- Contact ---------- */
.contact {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 120%, rgba(255, 59, 34, .22), transparent 60%);
}

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  color: var(--bone-dim);
  font-size: 18px;
  max-width: 42ch;
  margin: 0 auto 40px;
}

.lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.lines a {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 4vw, 40px);
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  transition: color .2s;
}

.lines a:hover {
  color: var(--flare);
}

.lines .lab {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--flare);
  display: block;
  margin-bottom: 4px;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-logo {
  height: 46px;
  aspect-ratio: 340 / 305;
  background: var(--kalogo) center / contain no-repeat;
  mix-blend-mode: screen;
  display: block;
}

.foot small {
  color: var(--bone-faint);
  font-size: 12px;
  letter-spacing: .04em;
}

/* ---------- Animations ---------- */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes swipe {
  to {
    transform: scaleX(1);
  }
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s, transform .7s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}
