/* =========================================================
   YSL Beauty Light Club – landing page mockup
   ========================================================= */

:root {
  --black: #050505;
  --dark: #111111;
  --card: #151515;
  --line: #262626;
  --white: #f4f1ea;
  --grey: #8a8a8a;
  --grey-dark: #5a5a5a;
  --gold: #c9a44f;
  --gold-light: #e6c870;
  --gold-grad: linear-gradient(90deg, #c7a24c 0%, #e6c870 100%);

  --font: "Jost", "Futura", "Century Gothic", "Helvetica Neue", Arial, sans-serif;
  --font-cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --nav-h: 84px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, figure { margin: 0; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 26px;
  border-radius: 5px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold { background: var(--gold-grad); color: #141009; }
.btn--gold:hover { box-shadow: 0 8px 28px rgba(214, 178, 90, .35); }

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--white);
  background: rgba(0, 0, 0, .15);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .06); }

.btn--outline-gold { border: 1px solid rgba(201, 164, 79, .55); color: var(--gold); }
.btn--outline-gold:hover { border-color: var(--gold); background: rgba(201, 164, 79, .08); }

.btn--lg { padding: 15px 34px; font-size: 14px; }
.btn--sm { padding: 9px 44px; font-size: 11px; }
.btn--block { width: 100%; padding: 11px 16px; font-size: 11px; }

/* ---------- Headings ---------- */
.section { position: relative; padding: clamp(70px, 9vw, 120px) 0; }
.section--black { background: var(--black); }
.section--dark { background: var(--dark); }

.eyebrow {
  text-align: center;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.heading {
  text-align: center;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.heading em { font-style: normal; color: var(--gold); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .35s ease, backdrop-filter .35s ease;
}
.nav.is-scrolled {
  background: rgba(5, 5, 5, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.nav.is-open { backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav__inner {
  max-width: calc(1260px + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .35s ease;
}
.nav.is-scrolled .nav__inner { height: 64px; }
.nav__logo img { width: auto; height: 56px; transition: height .35s ease; }
.nav.is-scrolled .nav__logo img { height: 44px; }

.nav__menu { display: flex; gap: clamp(28px, 5vw, 110px); }
.nav__menu a {
  position: relative;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 0;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 12px 10px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 58vw;
  min-height: 640px;
  max-height: 1000px;
  overflow: hidden;
  isolation: isolate;
}

/* brushed metal: dark steel on the left, warm gold on the right */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(-14deg, rgba(255,255,255,.035) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(-16deg, rgba(0,0,0,.25) 0 1px, transparent 1px 5px),
    radial-gradient(60% 55% at 20% 35%, rgba(150,150,150,.28), transparent 70%),
    radial-gradient(55% 70% at 92% 70%, rgba(214,190,120,.75), transparent 70%),
    radial-gradient(40% 50% at 78% 20%, rgba(120,105,60,.45), transparent 70%),
    linear-gradient(100deg, #0d0d0d 0%, #1a1a1a 35%, #141210 55%, #4a4128 80%, #7a6b3f 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, transparent 25%, transparent 70%, rgba(0,0,0,.65) 100%);
}

.hero__heart {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 16%;
  width: min(44vw, 760px);
  transform: translate(-44%, 0) rotate(-4deg);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.7));
  will-change: transform;
}

/* title area = between the nav and the tagline block */
.hero__title {
  position: absolute;
  top: var(--nav-h);
  bottom: 170px;
  left: 0;
  right: 0;
  font-weight: 400;
  text-transform: uppercase;
  pointer-events: none;
  font-size: clamp(40px, 8.6vw, 150px);
  line-height: 1;
  letter-spacing: .01em;
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,.55), 0 0 42px rgba(255,255,255,.28);
}
.hero__line { position: absolute; white-space: nowrap; }
.hero__line--1 { left: 8.3%; top: 44%; }
.hero__line--2 { right: 8%; bottom: 0; }

.hero__bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 var(--gutter) clamp(40px, 4.5vw, 70px);
}
.hero__tagline {
  text-align: center;
  color: var(--gold-light);
  font-size: clamp(14px, 1.7vw, 24px);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ---------- WHAT'S NEXT ---------- */
.next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.next-event {
  position: relative;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.2vw, 40px);
  border: 1px solid rgba(201, 164, 79, .28);
  border-top-color: rgba(201, 164, 79, .55);
  background:
    radial-gradient(70% 90% at 45% 45%, rgba(70, 58, 34, .75), transparent 75%),
    linear-gradient(135deg, #1d1810 0%, #2a2316 45%, #120e08 100%);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.next-event__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,164,79,.6); }
  50% { box-shadow: 0 0 0 6px rgba(201,164,79,0); }
}
.next-event__date {
  color: var(--grey);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.next-event__name {
  font-weight: 400;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1.05;
  letter-spacing: .02em;
}
.next-event__place {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 8px 0 34px;
}

.soon__label {
  color: var(--grey);
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: -6px 0 12px;
}
.soon__list { display: grid; gap: 10px; margin-bottom: 12px; }
.soon__item {
  display: grid;
  grid-template-columns: 158px 1fr auto;
  align-items: center;
  padding: 22px 24px;
  background: #0d0d0d;
  border: 1px solid #1d1d1d;
  transition: border-color .25s ease, background-color .25s ease;
}
.soon__item:hover { border-color: rgba(201,164,79,.45); background: #121110; }
.soon__date {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.soon__info strong {
  display: block;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.soon__info small { color: var(--grey-dark); font-size: 12px; }
.soon__arrow { color: var(--gold); opacity: .6; transition: transform .25s ease, opacity .25s ease; }
.soon__item:hover .soon__arrow { transform: translateX(5px); opacity: 1; }

/* ---------- SEASON MAP ---------- */
.map-line {
  height: 1px;
  margin: 0 0 clamp(40px, 5vw, 60px);
  background: linear-gradient(90deg, transparent, #2e2e2e 15%, #2e2e2e 85%, transparent);
}
.map { overflow-x: auto; scrollbar-width: none; padding-bottom: 20px; }
.map::-webkit-scrollbar { display: none; }

.map__track {
  display: grid;
  grid-template-columns: repeat(8, minmax(110px, 1fr));
  min-width: 900px;
  position: relative;
}
.map__track::before {
  content: "";
  position: absolute;
  left: 6%; right: 6%;
  top: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,79,.18) 10%, rgba(201,164,79,.18) 90%, transparent);
}

.map__stop {
  display: grid;
  grid-template-rows: 64px 26px auto;
  justify-items: center;
  text-align: center;
  position: relative;
}
.map__meta {
  grid-row: 1;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
  position: relative;
}
.map__stop--up .map__meta::after,
.map__stop .map__body::before {
  content: "";
  width: 1px;
  height: 10px;
  background: #3a3a3a;
}
.map__stop--up .map__meta::after { position: absolute; bottom: 0; }

.map__dot {
  grid-row: 2;
  align-self: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid #3c3c3c;
  background: #0c0c0c;
  position: relative;
  z-index: 1;
  transition: border-color .3s ease, transform .3s ease;
}
.map__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.map__stop:hover .map__dot { border-color: var(--gold); transform: scale(1.2); }

.is-next .map__dot {
  width: 26px; height: 26px;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,164,79,.12), 0 0 18px rgba(201,164,79,.45);
}
.is-next .map__dot::after { width: 14px; height: 14px; background: var(--gold-grad); }

.map__body {
  grid-row: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map__body::before { margin-bottom: 4px; }
.map__stop--down .map__body::before { margin-bottom: 6px; }

.map__date {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.map__city { font-size: 8px; letter-spacing: .06em; color: #cfcfcf; }
.map__tag {
  margin-top: 6px;
  padding: 1px 4px;
  background: var(--gold);
  color: #111;
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.map__name {
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 2px;
}
.map__venue { font-size: 9px; color: #444; }

/* ---------- LINE-UP ---------- */
.lineup {
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.lineup__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(30% 45% at 50% 30%, rgba(255,255,255,.1), transparent 70%),
    linear-gradient(90deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.92) 30%, rgba(0,0,0,.92) 62%, rgba(0,0,0,.1) 100%),
    url("../assets/hero banner.png") center / cover no-repeat;
}
.lineup .heading { margin-bottom: clamp(30px, 4vw, 50px); }

.lineup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 60px);
  max-width: 1080px;
  margin: 0 auto;
}

.artist {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.artist img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 530 / 410;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(50% 50% at 50% 50%, #000 58%, transparent 100%);
          mask-image: radial-gradient(50% 50% at 50% 50%, #000 58%, transparent 100%);
  filter: grayscale(1) contrast(1.05);
  transition: transform .5s ease, filter .5s ease;
}
.artist:hover img { transform: scale(1.04); filter: grayscale(1) contrast(1.12) brightness(1.08); }

.artist figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -26px;
  position: relative;
}
.artist__label {
  display: inline-block;
  padding: 3px 18px 1px;
  font-size: clamp(18px, 1.9vw, 26px);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #111;
  transform: rotate(var(--rot, 0deg));
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
  transition: transform .3s ease;
}
.artist:hover .artist__label { transform: rotate(0deg) scale(1.05); }
.artist__label--white { background: #ececec; }
.artist__label--gold { background: var(--gold-grad); }
.artist__event {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.artist__where {
  font-size: 9px;
  color: var(--grey-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- EXCLUSIVE ACCESS ---------- */
.drops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.6vw, 36px);
}
.drop {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 250px;
  padding: 60px 18px 18px;
  background: var(--card);
  border: 1px solid #1c1c1c;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.drop:hover { transform: translateY(-6px); border-color: #333; }
.drop--featured {
  background: linear-gradient(160deg, #1d1809 0%, #161206 100%);
  border-color: rgba(201,164,79,.5);
}
.drop--featured:hover { border-color: var(--gold); }
.drop__no {
  position: absolute;
  top: 4px; right: 14px;
  font-size: clamp(26px, 2.5vw, 34px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3e3e3e;
}
.drop--featured .drop__no { color: #4a3d19; }
.drop__title {
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.drop__text {
  font-size: 11px;
  color: var(--grey-dark);
  line-height: 1.5;
  min-height: 34px;
  margin-bottom: 10px;
}

/* ---------- LAST NIGHT ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  max-width: 1116px;
  margin: 0 auto;
}
.gallery__item { overflow: hidden; background: #000; display: block; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--a,
.gallery__item--b { aspect-ratio: 720 / 730; }
.gallery__item--c { grid-column: 3; grid-row: 1 / span 2; position: relative; }
.gallery__item--c img { position: absolute; inset: 0; }
.gallery__item--d { grid-column: 1 / span 2; aspect-ratio: 1462 / 471; }
.gallery__cta { margin-top: 48px; }

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  overflow: hidden;
  background: #070707;
  padding-top: clamp(140px, 17vw, 240px);
  isolation: isolate;
}
.footer__heart {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -20%;
  width: max(1300px, 122vw);
  max-width: none;
  transform: translateX(-50%);
  filter: grayscale(1) brightness(.22) contrast(1.2);
  opacity: .9;
  pointer-events: none;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
}
.footer__brand { display: flex; flex-direction: column; }
.footer__name {
  font-family: var(--font-cond);
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer__sub {
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer__links { display: flex; gap: 22px; }
.footer__links a,
.footer__copy,
.footer__bar p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6a6a6a;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy { justify-self: end; color: #4a4a4a; }
.footer__bar {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(201,164,79,.35) 50%, transparent) 1;
  padding: 20px var(--gutter) 26px;
  text-align: center;
}
.footer__bar p { color: #3a3a3a; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dot { animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .soon__item { grid-template-columns: 120px 1fr auto; padding: 18px; }
  .soon__date, .soon__info strong { font-size: 15px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 70px; }
  .nav__logo img { height: 46px; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    background: rgba(5,5,5,.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
  }
  .nav__menu a { font-size: 18px; letter-spacing: .2em; }
  .nav.is-open .nav__menu { opacity: 1; visibility: visible; }

  .hero__heart { width: 70vw; top: 22%; transform: translate(-50%, 0) rotate(-4deg); }
  .hero__line--1 { left: var(--gutter); top: 42%; }
  .hero__line--2 { right: var(--gutter); }

  .next { grid-template-columns: 1fr; }

  .lineup__grid { grid-template-columns: repeat(2, 1fr); }

  .drops { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__brand { align-items: center; }
  .footer__copy { justify-self: center; }
}

@media (max-width: 600px) {
  .hero { min-height: 600px; height: 100svh; }
  .hero__title { font-size: clamp(38px, 12vw, 70px); bottom: 180px; }
  .hero__heart { width: 88vw; top: 20%; }
  .hero__line--1 { top: 38%; }

  .btn--lg { padding: 13px 24px; font-size: 13px; }
  .next-event .btn-row .btn { flex: 1; }
  .soon__item { grid-template-columns: 1fr auto; row-gap: 6px; }
  .soon__date { grid-column: 1; font-size: 13px; }
  .soon__info { grid-column: 1; }
  .soon__arrow { grid-column: 2; grid-row: 1 / span 2; }
  .soon > .btn { width: 100%; }

  .lineup__grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery__item--c { grid-column: 1 / span 2; grid-row: auto; aspect-ratio: 4 / 3; }
  .footer__heart { width: 260vw; top: 10%; }
  .gallery__item--d { grid-column: 1 / span 2; aspect-ratio: 16 / 9; }

  .footer__links { gap: 16px; }
}
