/* ============================================================
   LILY — moody modern indie theme
   Swap the palette below to re-skin the whole site.
   ============================================================ */
:root {
  --bg:        #1f1810;   /* warm dark brown */
  --bg-2:      #271f15;
  --surface:   #31271b;
  --text:      #f4ecdf;   /* warm cream */
  --muted:     #a99a86;   /* dusty taupe */
  --accent:    #82945e;   /* olive-sage, from the horse photo foliage */
  --accent-2:  #cdb083;   /* warm ochre gold */
  --line:      rgba(244, 236, 223, 0.13);
  --maxw:      1100px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: "Manrope", sans-serif; font-weight: 300; line-height: 1.05; }

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

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

section { position: relative; }

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.2rem, 4vw, 3rem);
}
.nav__logo { font-family: "Manrope", sans-serif; font-size: 1.15rem; letter-spacing: -0.02em; font-weight: 300; text-transform: lowercase; color: var(--accent); text-shadow: 0 1px 12px rgba(0,0,0,0.45); }
.nav__logo b { font-weight: 600; }
/* Nav links (top, bright) */
.nav__links { display: flex; gap: clamp(1.1rem, 3vw, 2.4rem); }
.nav__links a { position: relative; font-size: 0.98rem; font-weight: 300; letter-spacing: -0.01em; text-transform: lowercase; color: var(--text); text-shadow: 0 1px 12px rgba(0,0,0,0.45); transition: color 0.3s; }
.nav__links a:hover { color: var(--accent); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: currentColor; transition: width 0.35s var(--ease); }
.nav__links a:hover::after { width: 100%; }

/* Music — coming soon overlay */
.coming-soon {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(22, 17, 11, 0.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s;
}
body.coming-soon-open .coming-soon { opacity: 1; visibility: visible; }
.coming-soon__inner { text-align: center; padding: 2rem; }
.coming-soon__title { font-size: clamp(2.6rem, 9vw, 5.5rem); font-weight: 300; letter-spacing: -0.04em; text-transform: lowercase; margin-top: 0.6rem; }
.coming-soon__close { position: absolute; top: 1.3rem; right: 1.6rem; background: none; border: none; color: var(--text); font-size: 2rem; line-height: 1; cursor: pointer; opacity: 0.65; transition: opacity 0.3s; }
.coming-soon__close:hover { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 6rem clamp(1.5rem, 6vw, 5rem) clamp(4rem, 10vh, 7rem);
  overflow: hidden;
}
/* Background video fills the hero */
.hero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  /* Warm gradient shows through until a real video is added */
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(192, 106, 72, 0.22), transparent 55%),
    radial-gradient(90% 70% at 80% 100%, rgba(205, 176, 131, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
/* Soft, localized wash — darkens only the lower-left where the name sits,
   so the video reads bright everywhere else and the name feels part of the frame. */
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,11,7,0.6) 0%, rgba(15,11,7,0.15) 12%, transparent 22%),
    linear-gradient(90deg, rgba(15,11,7,0.55) 0%, rgba(15,11,7,0.18) 38%, transparent 62%),
    linear-gradient(0deg, rgba(15,11,7,0.6) 0%, rgba(15,11,7,0.12) 30%, transparent 50%);
}
.hero__eyebrow {
  font-size: 0.8rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent-2);
  margin-bottom: 1.6rem;
  opacity: 0; animation: rise 1s var(--ease) 0.1s forwards;
}
.hero__inner { max-width: 100%; }
.hero__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  letter-spacing: -0.03em;
  font-weight: 300;
  text-transform: lowercase;
  line-height: 1;
  text-shadow: 0 1px 24px rgba(0,0,0,0.35);
  opacity: 0; animation: rise 1.2s var(--ease) 0.25s forwards;
}
.hero__title b { font-weight: 600; }
.hero__tagline {
  max-width: 34ch; margin: 1.8rem auto 0; color: var(--muted); font-size: 1.05rem;
  opacity: 0; animation: rise 1s var(--ease) 0.5s forwards;
}
.hero__cta { display: flex; gap: 1rem; margin-top: 2.6rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: rise 1s var(--ease) 0.7s forwards; }
.hero__scroll { position: absolute; bottom: 1.8rem; right: clamp(1.5rem, 6vw, 5rem); font-size: 1.3rem; color: var(--text); opacity: 0.8; animation: bob 2s ease-in-out infinite; }

@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bob  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 0.85rem 1.8rem; font-size: 0.82rem; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: 100px; transition: all 0.35s var(--ease); border: 1px solid transparent;
}
.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover { background: #94a56e; transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(130,148,94,0.6); }
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.74rem; }

/* ---------- Section shared ---------- */
.section__label {
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.8rem;
}
.section__label--center { text-align: center; }
.section__title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; letter-spacing: -0.03em; text-transform: lowercase; text-align: center; margin-bottom: 3rem; }

/* ---------- Latest release ---------- */
.release {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 8rem) clamp(1.2rem, 5vw, 3rem);
}
.release__cover {
  aspect-ratio: 1; border-radius: 6px;
  background: linear-gradient(135deg, var(--surface), #26222e);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8);
  font-family: "Cormorant Garamond", serif; letter-spacing: 0.2em; color: var(--muted); text-align: center; font-size: 1.4rem;
}
.release__name { font-size: clamp(2.4rem, 5vw, 3.4rem); margin: 0.4rem 0 0.3rem; }
.release__type { color: var(--accent-2); font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.release__blurb { color: var(--muted); max-width: 40ch; margin-bottom: 1.8rem; }

/* Countdown */
.countdown { display: flex; gap: 1.4rem; margin-bottom: 1.8rem; }
.countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: 3rem; }
.countdown__num { font-family: "Cormorant Garamond", serif; font-size: 2rem; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.countdown__lab { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }

.release__presave-label { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 0.7rem; }
.listen-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.listen-link {
  font-size: 0.8rem; letter-spacing: 0.08em; padding: 0.5rem 1.1rem; border: 1px solid var(--line);
  border-radius: 100px; transition: all 0.3s var(--ease);
}
.listen-link:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Listen platforms ---------- */
.listen { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem); }
.platforms { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.platform {
  background: var(--bg-2); padding: 1.6rem 1rem; text-align: center; font-size: 0.95rem; letter-spacing: 0.05em;
  transition: background 0.3s, color 0.3s;
}
.platform:hover { background: var(--surface); color: var(--accent); }

/* ---------- Tour ---------- */
.tour { max-width: 820px; margin: 0 auto; padding: clamp(3rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem); }
.shows { list-style: none; }
.show {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.4rem;
  padding: 1.4rem 0.4rem; border-top: 1px solid var(--line); transition: padding-left 0.35s var(--ease);
}
.show:last-child { border-bottom: 1px solid var(--line); }
.show:hover { padding-left: 1.2rem; }
.show__date { display: flex; flex-direction: column; align-items: center; min-width: 3rem; }
.show__mon { font-size: 0.72rem; letter-spacing: 0.18em; color: var(--accent); }
.show__day { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; line-height: 1; }
.show__info { display: flex; flex-direction: column; }
.show__city { font-size: 1.15rem; }
.show__venue { color: var(--muted); font-size: 0.88rem; }
.show__btn {
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.6rem 1.3rem;
  border: 1px solid var(--line); border-radius: 100px; transition: all 0.3s var(--ease); white-space: nowrap;
}
a.show__btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.show__btn--sold { color: var(--muted); opacity: 0.6; cursor: default; }
.show--sold .show__city { opacity: 0.6; }

/* ---------- About ---------- */
.about {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 8rem) clamp(1.2rem, 5vw, 3rem);
}
.about__ph {
  aspect-ratio: 4/5; border-radius: 6px; border: 1px solid var(--line);
  background: linear-gradient(160deg, #211d29, var(--bg-2));
  display: flex; align-items: center; justify-content: center; color: var(--muted); letter-spacing: 0.25em; font-size: 0.9rem;
}
.about__img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 6px;
  border: 1px solid var(--line); box-shadow: 0 40px 80px -34px rgba(0,0,0,0.8);
}
.about__head { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0.4rem 0 1.4rem; }
.about__text p { margin-bottom: 1.1rem; max-width: 46ch; }
.about__text p:not(.section__label) { color: var(--muted); }
.about__note { font-size: 0.82rem; font-style: italic; opacity: 0.6; }
.press { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; }

.tour__note { text-align: center; color: var(--muted); font-size: 0.82rem; font-style: italic; opacity: 0.7; margin-top: 1.8rem; }

/* Empty live-dates state */
.tour__empty { text-align: center; padding: 2rem 0 1rem; border-top: 1px solid var(--line); }
.tour__empty p { color: var(--muted); }
.tour__empty p:first-child { color: var(--text); font-size: 1.15rem; margin-bottom: 0.5rem; }
.tour__empty a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.tour__empty a:hover { border-color: var(--accent); }

/* Inquiries line under bio */
.about__contact { display: inline-block; margin-top: 1.9rem; }

/* ---------- Connect ---------- */
.connect { text-align: center; max-width: 640px; margin: 0 auto; padding: clamp(4rem, 10vw, 7rem) 1.4rem; }
.connect__sub { color: var(--muted); margin-bottom: 2rem; }
.signup { display: flex; gap: 0.6rem; max-width: 440px; margin: 0 auto; }
.hidden-check { display: none !important; }
.signup button:disabled { opacity: 0.6; cursor: default; }
.signup input {
  flex: 1; background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: 0.9rem 1.4rem; color: var(--text); font-size: 0.95rem; font-family: inherit;
}
.signup input:focus { outline: none; border-color: var(--accent); }
.signup button {
  background: var(--accent); color: #fff; border: none; border-radius: 100px; padding: 0 1.6rem;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: inherit;
  transition: all 0.3s var(--ease);
}
.signup button:hover { background: #94a56e; color: #fff; }
.signup__msg { min-height: 1.4rem; margin-top: 1rem; font-size: 0.9rem; color: var(--accent-2); }

.socials { display: flex; gap: 1.6rem; justify-content: center; margin-top: 2.4rem; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }
.socials a { color: var(--accent); transition: color 0.3s; }
.socials a:hover { color: #a6b78a; }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 3rem 1.4rem 3.5rem; border-top: 1px solid var(--line); }
.footer__logo { font-family: "Manrope", sans-serif; font-weight: 300; letter-spacing: -0.02em; font-size: 1.25rem; text-transform: lowercase; margin-bottom: 0.8rem; }
.footer__logo b { font-weight: 600; }
.footer__meta { color: var(--muted); font-size: 0.82rem; }
.footer__booking { color: var(--muted); font-size: 0.82rem; margin-top: 0.4rem; }
.footer__booking a { color: var(--accent); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav { padding: 1.1rem 1.2rem; }
  .nav__logo { font-size: 1rem; }
  .nav__links { gap: 0.85rem; }
  .nav__links a { font-size: 0.8rem; }
  .release, .about { grid-template-columns: 1fr; }
  .about__photo { order: -1; max-width: 320px; }
  .show { grid-template-columns: auto 1fr; grid-row-gap: 0.8rem; }
  .show__btn { grid-column: 2; justify-self: start; }
}
