/* ============================================================
   A.R.T — Official Website
   Spotlight design: immersive photo hero, minimal warm sections
   ============================================================ */

:root {
  --bg: #faf6f2;
  --card: #ffffff;
  --ink: #17121a;
  --ink2: #77697b;
  --coral: #ff4a63;
  --coral2: #ff7a45;
  --magenta: #e8367d;
  --peach: #ffd9c4;
  --line: rgba(23, 18, 26, .09);
  --line2: rgba(23, 18, 26, .16);
  --grad: linear-gradient(100deg, var(--magenta), var(--coral) 55%, var(--coral2));
  --sans: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.035em; line-height: 1.04; text-wrap: balance; }
p { margin: 0; }
a { color: var(--ink); text-decoration: none; }
img { max-width: 100%; height: auto; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

.label {
  font-size: 12px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink2);
}
.label--coral { color: var(--coral); }

/* ---------- Buttons & chips ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding: 0 28px; border-radius: 100px;
  font-weight: 600; font-size: 15px; font-family: var(--sans);
  cursor: pointer; border: 0;
  transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
}
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { transform: translateY(-2px); color: #fff; }
.btn--grad { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(232, 54, 125, .55); }
.btn--grad:hover { transform: translateY(-2px); color: #fff; }
.btn--soft { background: #fff; color: var(--ink); border: 1px solid var(--line2); }
.btn--soft:hover { border-color: var(--ink); }
.btn--white { background: #fff; color: var(--ink); height: 46px; padding: 0 24px; font-size: 14px; }

.glass {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

.card { background: var(--card); border-radius: 28px; border: 1px solid var(--line); }

/* ---------- Hero ---------- */

.hero { position: relative; height: 100svh; min-height: 640px; max-height: 1000px; overflow: hidden; }

.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero__wash {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 18, 26, .20), transparent 26%, transparent 56%, rgba(23, 18, 26, .38));
}

.hero__top { position: absolute; top: 0; left: 0; right: 0; z-index: 5; }
.hero__topbar { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.hero__logo { height: 30px; display: block; }
.hero__nav { display: flex; align-items: center; gap: 30px; }
.hero__nav nav { display: flex; gap: 28px; font-size: 14.5px; font-weight: 600; }
.hero__nav nav a { color: #fff; }
.hero__nav nav a:hover { color: var(--peach); }

.hero__bottom { position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; }
.hero__content {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 60px; padding-bottom: 104px;
}
.hero__title {
  font-size: clamp(48px, 7.4vw, 104px);
  color: #fff; max-width: 9ch;
  text-shadow: 0 2px 30px rgba(23, 18, 26, .25);
}
.hero__aside { flex: none; max-width: 300px; padding-bottom: 12px; }
.hero__tag {
  font-size: 16.5px; font-weight: 500; color: #fff; margin-bottom: 18px;
  text-shadow: 0 1px 16px rgba(23, 18, 26, .3);
}
.hero__stores { display: flex; gap: 10px; flex-wrap: wrap; }
.store-chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 18px; border-radius: 12px;
  font-size: 13.5px; font-weight: 600; color: #fff;
}
.store-chip:hover { background: rgba(255, 255, 255, .28); color: #fff; }

.hero__scroll {
  position: absolute; left: 48px; bottom: 28px; z-index: 6;
  display: inline-flex; align-items: center; gap: 7px;
  height: 34px; padding: 0 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}

/* floating pill nav */
.pillnav {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 24px; z-index: 6;
  display: flex; align-items: center; gap: 4px;
  background: var(--grad); border-radius: 100px; padding: 6px;
  box-shadow: 0 18px 44px -14px rgba(232, 54, 125, .65);
  white-space: nowrap;
}
.pillnav__home {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 100px; background: rgba(255, 255, 255, .22);
}
.pillnav a { color: #fff; }
.pillnav__link {
  font-size: 14px; font-weight: 600; padding: 0 18px; height: 44px;
  display: inline-flex; align-items: center; border-radius: 100px;
}
.pillnav__link:hover { background: rgba(255, 255, 255, .18); }

/* ---------- Stats ---------- */

.stats { padding: 84px 0 20px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.stat__num {
  font-size: clamp(34px, 4vw, 58px); font-weight: 600; letter-spacing: -.04em;
  background: linear-gradient(100deg, var(--magenta), var(--coral2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__cap { font-size: 14px; color: var(--ink2); margin-top: 2px; }

/* ---------- Latest ---------- */

.latest { padding: 84px 0 40px; }
.latest__card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; overflow: hidden; }
.latest__cover { padding: 28px; }
.latest__cover img { width: 100%; display: block; border-radius: 20px; }
.latest__body { padding: 56px 56px 56px 28px; display: flex; flex-direction: column; justify-content: center; }
.latest__body h2 { font-size: clamp(32px, 4vw, 52px); margin: 16px 0 18px; }
.latest__body p { font-size: 16.5px; color: var(--ink2); max-width: 50ch; margin-bottom: 30px; }
.latest__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Music ---------- */

.music { padding: 80px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(38px, 5vw, 64px); }
.section-head p { max-width: 36ch; font-size: 15px; color: var(--ink2); text-align: right; }

.music__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }

.tracklist { padding: 16px 28px; }
.track {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 8px; border-bottom: 1px solid var(--line);
}
.track:last-child { border-bottom: 0; }
.track__meta { display: flex; align-items: center; gap: 16px; min-width: 0; }
.track__art { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; flex: none; }
.track__tile {
  width: 56px; height: 56px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #2b1030, #701a44);
}
.track__tile img { height: 10px; display: block; }
.track__title { font-weight: 600; font-size: 17px; }
.track__sub { font-size: 13px; color: var(--ink2); }
.play {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink);
  display: grid; place-items: center; flex: none; transition: transform .15s ease;
}
.play:hover { transform: scale(1.1); }
.play--grad { background: linear-gradient(100deg, var(--magenta), var(--coral2)); }

.eps { display: flex; flex-direction: column; gap: 28px; }
.ep { padding: 20px; }
.ep img { width: 100%; border-radius: 20px; display: block; }
.ep__body { padding: 20px 10px 6px; }
.ep__body h3 { font-size: 30px; margin: 8px 0 16px; }
.ep__body .btn { width: 100%; height: 46px; font-size: 14px; }

/* ---------- Story ---------- */

.story { padding: 80px 0; }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story h2 { font-size: clamp(34px, 4.4vw, 56px); margin: 16px 0 22px; }
.story__text p { font-size: 16px; color: var(--ink2); max-width: 54ch; margin-bottom: 14px; }
.awards { border-top: 1px solid var(--line); margin-top: 30px; }
.award {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 14px 2px; border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.award__name { font-weight: 600; flex: none; }
.award__result { color: var(--ink2); text-align: right; }
.award__result--win { color: var(--coral); font-weight: 600; }
.collabs { margin-top: 30px; }
.collabs p { font-size: 15.5px; font-weight: 600; color: var(--ink); line-height: 1.8; margin-top: 10px; }
.story__photo { position: relative; }
.story__photo img { width: 100%; display: block; border-radius: 28px; }
.story__names {
  position: absolute; left: 20px; bottom: 20px; border-radius: 100px;
  padding: 10px 20px; font-size: 13.5px; font-weight: 600;
  background: rgba(23, 18, 26, .35); border-color: rgba(255, 255, 255, .25);
}

/* ---------- News ---------- */

.news { padding: 80px 0; }
.news__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.news-card { padding: 16px; display: flex; flex-direction: column; }
.news-card__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 16px; display: block; }
.news-card__body { padding: 18px 12px 10px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-card__body h3 { font-size: 22px; letter-spacing: -.02em; line-height: 1.15; }
.news-card__body p { font-size: 14px; color: var(--ink2); flex: 1; }
.news-card__link { font-size: 14px; font-weight: 600; color: var(--coral); }
.news-card__link:hover { color: var(--magenta); }

/* ---------- Live ---------- */

.live { padding: 80px 0; }
.showlist { padding: 16px 28px; }
.show {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px 8px; border-bottom: 1px solid var(--line);
}
.show:last-child { border-bottom: 0; }
.show__meta { display: flex; align-items: center; gap: 22px; min-width: 0; }
.show__date {
  font-size: 12px; font-weight: 600; color: var(--ink2);
  background: rgba(23, 18, 26, .05); border-radius: 100px;
  padding: 5px 12px; min-width: 82px; text-align: center; flex: none;
}
.show__venue { font-weight: 600; font-size: 17px; }
.show__city { font-size: 13px; color: var(--ink2); }
.show .btn { height: 44px; padding: 0 24px; font-size: 13.5px; flex: none; }
.live__booking { font-size: 13.5px; color: var(--ink2); margin-top: 18px; }
.live__booking a { color: var(--coral); font-weight: 600; }

/* ---------- Connect ---------- */

.connect { padding: 80px 0 100px; }
.connect__card {
  position: relative; border-radius: 36px; overflow: hidden;
  background: linear-gradient(115deg, var(--magenta), var(--coral) 48%, var(--coral2));
  padding: 90px 60px; text-align: center; color: #fff;
  box-shadow: 0 40px 90px -40px rgba(232, 54, 125, .6);
}
.connect__glow {
  position: absolute; top: -140px; right: -100px; width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .25), transparent 65%);
}
.connect__inner { position: relative; }
.connect__card h2 { font-size: clamp(40px, 6vw, 72px); color: #fff; margin: 16px 0 18px; }
.connect__card > .connect__inner > p {
  font-size: 16.5px; color: rgba(255, 255, 255, .88);
  margin-bottom: 36px; max-width: 44ch; margin-left: auto; margin-right: auto;
}
.connect__form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 28px; }
.connect__form input {
  flex: 1; height: 54px; border-radius: 100px; border: 0; background: #fff;
  color: var(--ink); padding: 0 24px; font-family: var(--sans); font-size: 15px; outline: none;
  min-width: 0;
}
.connect__socials { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.social-chip {
  border-radius: 100px; height: 40px; display: inline-flex; align-items: center;
  padding: 0 18px; font-size: 13px; font-weight: 600; color: #fff;
}
.social-chip:hover { background: rgba(255, 255, 255, .28); color: #fff; }

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer__logo { height: 24px; display: block; }
.footer__row div { font-size: 13.5px; color: var(--ink2); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 960px) {
  .wrap { padding: 0 20px; }

  .hero { min-height: 560px; }
  .hero__topbar { height: 68px; }
  .hero__logo { height: 22px; }
  .hero__nav nav { display: none; }
  .hero__content { flex-direction: column; align-items: flex-start; gap: 18px; padding-bottom: 96px; }
  .hero__title { font-size: clamp(44px, 12.5vw, 64px); }
  .hero__aside { max-width: none; padding-bottom: 0; }
  .hero__tag { font-size: 14.5px; margin-bottom: 14px; }
  .store-chip { height: 40px; padding: 0 15px; font-size: 12.5px; border-radius: 11px; }
  .hero__scroll { display: none; }

  .pillnav { bottom: 20px; padding: 5px; gap: 2px; }
  .pillnav__home { width: 40px; height: 40px; }
  .pillnav__link { font-size: 13px; padding: 0 12px; height: 40px; }

  .stats { padding: 52px 0 10px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .stat__cap { font-size: 12.5px; }

  .latest { padding: 52px 0 20px; }
  .latest__card { grid-template-columns: 1fr; }
  .latest__cover { padding: 18px 18px 0; }
  .latest__body { padding: 26px 24px 28px; }
  .latest__body p { font-size: 14.5px; margin-bottom: 20px; }
  .latest__actions { flex-direction: column; }
  .latest__actions .btn { width: 100%; }

  .music, .story, .news, .live { padding: 52px 0 20px; }
  .connect { padding: 52px 0 64px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 24px; }
  .section-head p { text-align: left; }

  .music__grid { grid-template-columns: 1fr; gap: 20px; }
  .tracklist { padding: 8px 20px; }
  .track { padding: 15px 4px; gap: 14px; }
  .track__art, .track__tile { width: 46px; height: 46px; }
  .track__tile img { height: 9px; }
  .track__title { font-size: 15px; }
  .track__sub { font-size: 12px; }
  .play { width: 38px; height: 38px; }

  .ep { padding: 16px; }
  .ep img { border-radius: 16px; }
  .ep__body { padding: 16px 8px 6px; }
  .ep__body h3 { font-size: 26px; }

  .story__grid { grid-template-columns: 1fr; gap: 26px; }
  .story__photo { order: -1; }
  .award { font-size: 13px; gap: 12px; padding: 12px 2px; }
  .collabs p { font-size: 14px; }

  .news__grid { grid-template-columns: 1fr; gap: 14px; }
  .news-card { padding: 14px; }
  .news-card__img { border-radius: 12px; }
  .news-card__body { padding: 14px 10px 8px; gap: 9px; }
  .news-card__body h3 { font-size: 19px; line-height: 1.2; }

  .showlist { padding: 8px 20px; }
  .show { padding: 16px 4px; }
  .show__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .show__venue { font-size: 15px; }
  .show .btn { height: 40px; padding: 0 18px; font-size: 12.5px; }

  .connect__card { padding: 48px 26px; border-radius: 28px; }
  .connect__form { flex-direction: column; }
  .connect__form .btn { width: 100%; }
  .social-chip { height: 36px; padding: 0 14px; font-size: 12px; }

  .footer__row { flex-direction: column; text-align: center; }
}

@media (min-width: 961px) {
  .hero__img--mobile { display: none; }
}
@media (max-width: 960px) {
  .hero__img--desktop { display: none; }
}

/* ---------- Watch (videos) ---------- */

.watch { padding: 80px 0; }
.video {
  margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.video__btn {
  position: relative; display: block; width: 100%; padding: 0; border: 0;
  background: #000; border-radius: 20px; overflow: hidden; cursor: pointer;
  aspect-ratio: 16 / 9; line-height: 0;
}
.video__thumb {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease, opacity .2s ease; opacity: .92;
}
.video__btn:hover .video__thumb { transform: scale(1.04); opacity: 1; }
.video__play {
  position: absolute; inset: 0; margin: auto;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(232, 54, 125, .7);
  transition: transform .15s ease;
}
.video__btn:hover .video__play { transform: scale(1.08); }
.video__title { font-weight: 600; font-size: 16px; letter-spacing: -.01em; padding: 0 2px; }
.video__iframe {
  width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 20px; display: block; background: #000;
}

.video--feature { margin-bottom: 28px; }
.video--feature .video__title { font-size: 22px; }
.video--feature .video__play { width: 84px; height: 84px; }

.video-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.video-row .video__title { font-size: 14.5px; }
.video-row .video__play { width: 48px; height: 48px; }

@media (max-width: 960px) {
  .watch { padding: 52px 0 20px; }
  .video__btn, .video__iframe { border-radius: 16px; }
  .video--feature { margin-bottom: 20px; }
  .video--feature .video__title { font-size: 18px; }
  .video--feature .video__play { width: 64px; height: 64px; }
  .video-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .video-row .video__play { width: 40px; height: 40px; }
  .video__play { width: 54px; height: 54px; }
}

/* ---------- Hero social row (5 icon buttons) ---------- */

.hero__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  transition: transform .15s ease, background .2s ease;
}
.social-icon:hover { background: rgba(255, 255, 255, .3); color: #fff; transform: translateY(-2px); }

@media (max-width: 960px) {
  .social-icon { width: 44px; height: 44px; }
}

/* ---------- Featured event ---------- */

.event { display: grid; grid-template-columns: 300px 1fr; gap: 0; overflow: hidden; }
.event__poster { display: block; line-height: 0; background: #000; }
.event__poster img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease, opacity .2s ease;
}
.event__poster:hover img { transform: scale(1.03); opacity: .95; }
.event__body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.event__name { font-size: clamp(32px, 4vw, 46px); margin: 10px 0 14px; }
.event__date { font-size: 18px; font-weight: 600; }
.event__venue { font-size: 15px; color: var(--ink2); margin-top: 2px; }
.event__lineup { font-size: 14.5px; color: var(--ink2); margin: 20px 0 28px; max-width: 52ch; }
.event__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.event__soon { opacity: .5; cursor: default; }
.event__soon:hover { transform: none; }

@media (max-width: 960px) {
  .event { grid-template-columns: 1fr; }
  .event__poster { max-height: 460px; }
  .event__poster img { object-position: top; }
  .event__body { padding: 28px 24px; }
  .event__actions { flex-direction: column; }
  .event__actions .btn { width: 100%; }
}

/* events container (stacks multiple events) */
.event-list { display: flex; flex-direction: column; gap: 24px; }
