/* ===== KHARI — "ILY" ===== */

:root {
  /* light theme, pink accent */
  --pink: #ff3d8b;
  --pink-soft: #ff7ab5;
  --pink-light: #ffd7ea;   /* light text on the dark sections/footer */
  --pink-bg: #fff0f7;      /* page background (light pink) */
  --ink: #14040c;          /* primary text (dark) */
  --ink-soft: #3a2230;     /* secondary text */
  --white: #ffffff;        /* true white: text/icons on accent + photo frames */
  --surface: #ffffff;      /* cards & panels (white) */
  --surface-2: #ffffff;    /* inputs */
  --radius: 22px;
  --shadow: 0 20px 60px rgba(255, 61, 139, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--pink-bg);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ===== Floating hearts ===== */
.hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.heart {
  position: absolute;
  bottom: -40px;
  font-size: 1.4rem;
  color: var(--pink-soft);
  opacity: 0.5;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 6vw;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav__logo {
  justify-self: start;
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  background: url("assets/camo-text.svg") center / 220px auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.nav__links { display: flex; gap: 1.6rem; justify-self: center; }
.nav__links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--pink); }
.nav__right { justify-self: end; display: flex; align-items: center; gap: 0.9rem; }
.nav__social { display: flex; gap: 0.5rem; }
.nav__social .social-icon { width: 36px; height: 36px; background: rgba(0, 0, 0, 0.06); color: var(--ink); }
.nav__social .social-icon:hover { background: var(--pink); color: #fff; }
.nav__links a.is-active { color: var(--pink); position: relative; }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 5vw 6vw 7vw;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--pink);
  background: var(--surface);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(255, 61, 139, 0.18);
}
.hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(5rem, 18vw, 13rem);
  line-height: 0.85;
  margin: 1.5rem 0 0.5rem;
  background: url("assets/camo-text.svg") center / cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 4px;
}
.hero__feat {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
}
.hero__by {
  margin: 1.4rem 0 2rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 30ch;
}
.hero__tagline {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}
.hero__release {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.6rem 0 2rem;
  padding: 0.7rem 1.1rem;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(20, 20, 26, 0.1);
}
.hero__release-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink);
}
.hero__release-title { font-weight: 800; font-size: 1.1rem; }
.hero__release-feat { color: var(--ink-soft); font-size: 0.95rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Release date line + countdown */
.hero__date {
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 0.5px;
  margin: 0 0 1.2rem;
}
.hero__date:empty { display: none; }
.countdown {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0 0 1.8rem;
}
.countdown__unit {
  background: var(--surface);
  border-radius: 14px;
  padding: 0.55rem 0.85rem;
  min-width: 62px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.12);
}
.countdown__num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink);
}
.countdown__label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--ink-soft);
}

.hero__art { position: relative; }
.hero__art-glow {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background: radial-gradient(circle at 50% 50%, var(--pink-soft) 0%, transparent 65%);
  filter: blur(30px);
  opacity: 0.55;
  z-index: -1;
}
.hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255, 61, 139, 0.4);
}
.btn--ghost {
  background: var(--surface);
  color: var(--pink);
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.15);
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 6vw 6vw;
  text-align: center;
}
.section--dark {
  background: linear-gradient(160deg, #1a0510, #2a0a1c);
  color: var(--white);
}
.section__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}
.section__title span { color: var(--pink); }
.section__title--left { text-align: left; }
.section--dark .section__title { color: var(--white); }
.section__sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.section--dark .section__sub { color: var(--pink-light); }

/* "Remind Me" button (shown on upcoming releases) */
.remind { margin-top: 1.6rem; }

/* Pre-Save / Remind action row under the streams */
.listen__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.listen__actions .remind,
.listen__actions .presave { margin-top: 0; }

/* ===== Listen (cover art + single Stream/Download CTA) ===== */
.listen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  max-width: 440px;
  margin: 0 auto;
}
.listen__art {
  width: 300px;
  max-width: 80%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  background: var(--pink-light);
}
.listen__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Single Stream/Download CTA (replaces the per-service grid) */
.listen__cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.listen__stream {
  width: 100%;
  max-width: 340px;
  font-size: 1.2rem;
  padding: 1.1rem 2rem;
  letter-spacing: 0.5px;
}
.listen__hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.8;
}

/* ===== Streams ===== */
.streams {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}
.stream {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  background: var(--surface);
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.12);
  transition: transform 0.15s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.stream:hover {
  transform: translateY(-4px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}
.stream__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  color: var(--white);
  font-size: 1.1rem;
}
.streams__note {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ===== Video ===== */
.video { max-width: 900px; margin: 0 auto; }
.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video__frame iframe { width: 100%; height: 100%; border: 0; }
.video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #2a0a1c, #4a0f2e);
  color: var(--white);
}
.video__play {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  font-size: 1.8rem;
  box-shadow: 0 0 0 0 rgba(255, 61, 139, 0.6);
  animation: pulse 2s infinite;
}
.video__placeholder p { font-weight: 700; font-size: 1.1rem; }
.video__placeholder small { color: var(--pink-light); opacity: 0.7; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 61, 139, 0.5); }
  70% { box-shadow: 0 0 0 24px rgba(255, 61, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 61, 139, 0); }
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4vw;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.about__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}
.about__text p { margin-bottom: 1.1rem; color: var(--ink-soft); font-size: 1.05rem; }
.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: 'Anton', sans-serif;
  font-size: 2.6rem;
  color: var(--pink);
  line-height: 1;
}
.stat__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ===== Instagram feed (under Meet KHARI) ===== */
.ig {
  margin: 4rem auto 0;
  max-width: 880px;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 61, 139, 0.15);
}
.ig__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 1px;
}
.ig__sub { color: var(--ink-soft); margin-bottom: 1.6rem; }
.ig__handle { color: var(--pink); font-weight: 800; }
.ig__btn { margin-top: 0.5rem; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto 2rem;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pink-light);
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.12);
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}
.ig-tile:hover {
  transform: translateY(-5px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-tile:hover img { transform: scale(1.06); }
.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(255, 61, 139, 0.35));
  opacity: 0;
  transition: opacity 0.2s;
}
.ig-tile:hover::after { opacity: 1; }
.ig-tile__icon {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  z-index: 1;
}
@media (max-width: 560px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Follow ===== */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.social {
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--pink);
  color: var(--white);
  transition: background 0.2s, transform 0.15s;
}
.social:hover {
  background: var(--pink);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 6vw;
  background: #14040c;
  color: var(--pink-light);
}
.footer__name {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--pink);
}
.footer__copy { font-size: 0.85rem; margin: 0.4rem 0; opacity: 0.7; }
.footer__credit { font-size: 0.9rem; font-weight: 600; }

/* ===== Page hero (Tour / Store) ===== */
.page-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5vw 6vw 2vw;
}
.page-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.5rem, 13vw, 9rem);
  line-height: 0.9;
  margin: 1rem 0 0.4rem;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #b51e63 0%, var(--pink) 55%, var(--pink-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero__sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* ===== Tour ===== */
.tour__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.show {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  text-align: left;
  background: var(--surface);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.12);
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}
.show:hover {
  transform: translateY(-3px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}
.show__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.5rem 0.6rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  color: var(--white);
  line-height: 1;
}
.show__month { font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; }
.show__day { font-family: 'Anton', sans-serif; font-size: 1.9rem; }
.show__info { flex: 1; }
.show__city { font-size: 1.25rem; font-weight: 800; }
.show__venue { color: var(--ink-soft); font-size: 0.95rem; }
.show__btn { flex-shrink: 0; }
.show__btn--disabled {
  background: var(--pink-light);
  color: var(--ink-soft);
  cursor: not-allowed;
  pointer-events: none;
}
.show--soldout { opacity: 0.75; }

.tour__cta { margin-top: 4rem; }
.tour__cta .btn { margin-top: 0.5rem; }

/* ===== Store ===== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.6rem;
  max-width: 1080px;
  margin: 0 auto;
}

/* Shopify shop: filter tabs + grid */
.store { padding-top: 0; }
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 0 auto 2rem;
}
.shop-filter {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 2px solid var(--pink);
  background: var(--surface);
  color: var(--pink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.shop-filter:hover { transform: translateY(-2px); }
.shop-filter.is-active { background: var(--pink); color: var(--white); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  justify-items: center;
  gap: 1.6rem;
  max-width: 1080px;
  margin: 0 auto;
}
.shop-cell { width: 100%; max-width: 340px; }
@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr; }
}
.product {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.12);
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.2rem;
}
.product:hover {
  transform: translateY(-5px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}
.product__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pink-light);
}
.product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product:hover .product__img { transform: scale(1.06); }
.product__tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.product__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1rem 1.2rem 0.2rem;
}
.product__price {
  color: var(--pink);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 1.2rem 1rem;
}
.product__btn { margin: 0 1.2rem; }

/* ===== Discography (Music page) ===== */
.releases {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.6rem;
  max-width: 1080px;
  margin: 0 auto;
}
.rel {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 20, 26, 0.1);
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.rel:hover {
  transform: translateY(-5px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}
.rel__art-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pink-light);
}
.rel__art { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.rel:hover .rel__art { transform: scale(1.05); }
.rel__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.rel__badge--soon { background: var(--ink-soft); }
.rel__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.25rem; }
.rel__title { font-family: 'Anton', sans-serif; font-size: 1.5rem; letter-spacing: 1px; }
.rel__feat { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.rel__meta { color: var(--ink-soft); font-size: 0.85rem; }
.rel__btns { display: flex; gap: 0.6rem; margin-top: 0.8rem; flex-wrap: wrap; }
.rel__btn { padding: 0.6rem 1.2rem; font-size: 0.95rem; }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--pink);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }
:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
  border-radius: 4px;
}
body.no-scroll { overflow: hidden; }

/* ===== Mobile nav toggle (hamburger) ===== */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.mobile-menu a {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--ink);
}
.mobile-menu a.is-active,
.mobile-menu a:hover { color: var(--pink); }

/* ===== Back to top ===== */
.to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 61, 139, 0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ===== Persistent music player bar ===== */
.player {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--pink);
  box-shadow: 0 -8px 24px rgba(255, 61, 139, 0.18);
}
.player__toggle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(255, 61, 139, 0.4);
}
.player__meta { flex: 1; min-width: 0; }
.player__title {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player__track {
  margin-top: 6px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 61, 139, 0.18);
  overflow: hidden;
}
.player__fill { height: 100%; width: 0; background: var(--pink); transition: width 0.25s linear; }
.player__vol-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-end;       /* line up with the song progress bar */
  padding-bottom: 1px;
}
.player__vol-icon { display: flex; align-items: center; }
.player__vol {
  width: 90px;
  height: 5px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 61, 139, 0.22);
  border-radius: 999px;
  cursor: pointer;
}
.player__vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(255, 61, 139, 0.5);
}
.player__vol::-moz-range-thumb {
  width: 15px; height: 15px;
  border: none;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
}
.player__sc {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
}
.player__close {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
}
.player__close:hover { background: rgba(0, 0, 0, 0.06); color: var(--pink); }
body.has-player { padding-bottom: 72px; }
body.has-player .to-top { bottom: 84px; }
@media (max-width: 560px) {
  .player__sc, .player__vol-wrap { display: none; }
}

/* ===== Newsletter ===== */
.signup {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.signup input {
  flex: 1 1 240px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.14);
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface-2);
  color: var(--ink);
}
.signup input::placeholder { color: var(--ink-soft); }
.signup input:focus { border-color: var(--pink); outline: none; }
.mini-form__msg {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--pink);
}

/* ===== Community / Text ===== */
.community__btn {
  font-size: 1.3rem;
  padding: 1.1rem 2.2rem;
  letter-spacing: 0.5px;
}
.community__btn span { font-weight: 800; }

/* ===== Connect (newsletter + text + follow + contact, shared grid) ===== */
.connect__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.connect__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.12);
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.connect__card--full { grid-column: 1 / -1; }
.connect__grid--three { grid-template-columns: repeat(3, 1fr); }
/* Social pills sitting on a light card */
.socials--light { gap: 0.6rem; }
.socials--light .social {
  background: var(--pink-bg);
  color: var(--pink);
  border-color: var(--pink);
  padding: 0.6rem 1.3rem;
  font-size: 0.92rem;
}
.socials--light .social:hover { background: var(--pink); color: var(--white); }
.connect__card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}
.connect__title {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.connect__sub {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
  max-width: 36ch;
}
.connect__card .signup { margin-top: 0.2rem; }
/* Compact contact list — spreads across the full-width card */
.connect__contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem;
  width: 100%;
  margin-top: 0.4rem;
}
.connect__contacts a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: var(--pink-bg);
  font-weight: 600;
  font-size: 0.9rem;
  word-break: break-word;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.connect__contacts a .clabel {
  color: var(--pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.78rem;
}
.connect__contacts a .connect__email {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}
.connect__contacts a:hover { background: var(--pink); color: var(--white); }
.connect__contacts a:hover span { color: var(--white); }
@media (max-width: 880px) {
  .connect__grid--three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .connect__grid,
  .connect__grid--three { grid-template-columns: 1fr; }
}

/* ===== Contact ===== */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}
.contact__card {
  background: var(--surface);
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.12);
  border: 2px solid transparent;
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact__card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}
.contact__role { font-weight: 800; color: var(--pink); text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }
.contact__email { font-weight: 600; word-break: break-word; }

/* ===== Press / EPK ===== */
.press__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4vw;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.press__img-wrap { display: flex; flex-direction: column; gap: 1rem; }
.press__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  width: 100%;
  height: auto;
}
.press__dl { text-align: center; }
.press__bio p { margin-bottom: 1.1rem; color: var(--ink-soft); font-size: 1.05rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.fact {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 122, 181, 0.3);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.fact__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--pink-light); font-weight: 700; }
.fact__value { font-weight: 700; color: var(--white); }

/* ===== Press hub: releases, photos, videos ===== */
.press-releases {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.prel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
  background: var(--surface);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(255, 61, 139, 0.12);
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}
.prel:hover { transform: translateY(-3px); border-color: var(--pink-soft); box-shadow: var(--shadow); }
.prel__date { flex-shrink: 0; width: 92px; font-weight: 700; color: var(--pink); font-size: 0.85rem; }
.prel__body { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }
.prel__type { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); font-weight: 700; }
.prel__title { font-weight: 700; }
.prel__dl { flex-shrink: 0; font-weight: 800; color: var(--pink); white-space: nowrap; }

.press-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pphoto {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 122, 181, 0.3);
  border-radius: var(--radius);
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pphoto__img { display: block; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 14px; background: var(--pink-light); cursor: zoom-in; }
.pphoto__img img { width: 100%; height: 100%; object-fit: cover; }
.pphoto figcaption { font-size: 0.85rem; color: var(--pink-light); font-weight: 600; }
.section:not(.section--dark) .pphoto { background: var(--surface); border-color: transparent; box-shadow: 0 8px 24px rgba(255,61,139,0.12); }
.section:not(.section--dark) .pphoto figcaption { color: var(--ink-soft); }
.pphoto__dl { margin-top: auto; }

.press-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pvid__title { margin-top: 0.7rem; font-weight: 700; }

/* ===== DJ & Radio request form ===== */
.dj-perks {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 2.2rem;
  text-align: left;
  display: grid;
  gap: 0.7rem;
}
.dj-perks li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 122, 181, 0.3);
  border-radius: 14px;
  padding: 0.8rem 1.1rem;
  color: var(--pink-light);
}
.dj-perks strong { color: var(--white); }

.request-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.request-form label,
.request-form legend {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pink-light);
}
.request-form input[type="text"],
.request-form input[type="email"],
.request-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}
.request-form input:focus,
.request-form textarea:focus { border-color: var(--pink); outline: none; }
.request-form textarea { resize: vertical; }
.checks {
  border: 1px solid rgba(255, 122, 181, 0.3);
  border-radius: 16px;
  padding: 1rem 1.2rem;
}
.checks legend { padding: 0 0.4rem; }
.check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--white);
  margin: 0.45rem 0;
  cursor: pointer;
}
.check input { width: 18px; height: 18px; accent-color: var(--pink); }
.request-form .btn { justify-self: start; }
@media (max-width: 560px) {
  .request-form { grid-template-columns: 1fr; }
  .request-form .btn { justify-self: stretch; text-align: center; }
}

/* ===== Footer (rich) ===== */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  text-align: left;
}
.footer__col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink);
  margin-bottom: 0.8rem;
}
.footer__col a { display: block; color: var(--pink-light); margin-bottom: 0.5rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }
.footer__col p { color: var(--pink-light); font-size: 0.9rem; margin-bottom: 0.8rem; }
.footer__credit { font-size: 0.9rem; font-weight: 600; margin: 0.3rem 0 1rem; }
.footer__socials { display: flex; gap: 0.7rem; }
.social-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pink-light);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.social-icon:hover { background: var(--pink); color: var(--white); transform: translateY(-3px); }
.mini-form { display: flex; gap: 0.4rem; }
.mini-form input {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
}
.mini-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.mini-form input:focus { border-color: var(--pink); outline: none; }
.mini-form .btn { padding: 0.6rem 1.1rem; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__social { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__by { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .countdown { justify-content: center; }
  .hero__art { order: -1; max-width: 360px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; text-align: center; }
  .press__grid { grid-template-columns: 1fr; }
  .section__title--left { text-align: center; }
  .about__stats { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; text-align: center; }
  .footer__socials { justify-content: center; }
  .mini-form { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .show { flex-wrap: wrap; gap: 1rem; }
  .show__info { flex: 1 1 60%; }
  .show__btn { width: 100%; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  /* Hide the big hero photo on phones — keep the hero text/CTA tighter */
  .hero__art { display: none; }
}

/* ===== Smart link landing page (link.html) ===== */
.sl-body { min-height: 100vh; display: flex; }
.sl-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(40px) saturate(1.3);
  transform: scale(1.15);
  opacity: 0.4;
}
.sl-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,240,247,0.6), rgba(255,240,247,0.9));
}
.sl {
  position: relative;
  z-index: 1;
  margin: auto;
  width: 100%;
  max-width: 440px;
  padding: 2rem 1.2rem;
}
.sl__card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.4rem 1.8rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.sl__art-wrap {
  width: 220px;
  max-width: 70%;
  margin: 0 auto 1.2rem;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
}
.sl__art { width: 100%; height: 100%; object-fit: cover; }
.sl__status {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--pink);
}
.sl__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
  letter-spacing: 1px;
  margin: 0.3rem 0 0.2rem;
}
.sl__sub { color: var(--ink-soft); font-weight: 600; margin-bottom: 1.4rem; }
.sl__countdown { justify-content: center; margin: 0 0 1.4rem; }
.sl__links { display: flex; flex-direction: column; gap: 0.7rem; }
.sl__btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 2px solid rgba(255, 61, 139, 0.25);
  font-weight: 700;
  color: var(--ink);
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}
.sl__btn:hover { transform: translateY(-2px); border-color: var(--pink); box-shadow: 0 8px 20px rgba(255,61,139,0.18); }
.sl__btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  color: var(--white);
  border-color: transparent;
}
.sl__ic {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 61, 139, 0.12);
  color: var(--pink);
  font-size: 1rem;
}
.sl__btn--primary .sl__ic { background: rgba(255,255,255,0.25); color: var(--white); }
.sl__logo { width: 28px; height: 28px; flex-shrink: 0; object-fit: contain; }
.sl__name { flex: 1; text-align: left; }
.sl__go { font-size: 0.85rem; opacity: 0.7; }
.sl__note { color: var(--ink-soft); }
.sl__h2 {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin: 1.6rem 0 0.8rem;
}
.sl__video .video__frame { box-shadow: 0 8px 24px rgba(255,61,139,0.18); }
.sl__tour { margin-top: 0.5rem; text-align: left; }
.sl__socials { display: flex; justify-content: center; gap: 0.7rem; margin-top: 1.6rem; }
.sl__socials .social-icon { background: rgba(255, 61, 139, 0.12); color: var(--pink); }
.sl__socials .social-icon:hover { background: var(--pink); color: var(--white); transform: translateY(-3px); }
.sl__home { display: inline-block; margin-top: 1.2rem; font-size: 0.85rem; font-weight: 600; color: var(--pink); }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__img { animation: none; }
}

/* ===== Camo "KHARI" wordmark ===== */
/* The hero 'KHARI' is filled with the pink camo (assets/camo-text.svg) via
   background-clip:text. The art omits white so the letters stay visible on light. */
.hero__title { background-repeat: no-repeat; }
