/* Mike Lotito Music — main styles */

:root {
  --bg-deep: #0a0a0c;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --text: #e8e6e3;
  --text-muted: #9a9690;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --header-h: 4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

a {
  color: var(--accent);
}

a:hover {
  color: #e4bc4a;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.site-header__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle__bar {
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav__cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
}

.site-nav__cta:hover {
  background: var(--accent-soft);
  color: #e4bc4a !important;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 12, 0.97);
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 80%, rgba(80, 60, 120, 0.15), transparent 50%),
    var(--bg-deep);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.25;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 40rem;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__tagline {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #e4bc4a;
  border-color: #e4bc4a;
  color: var(--bg-deep);
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--secondary:hover {
  background: var(--accent-soft);
  color: #e4bc4a;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section--live,
.section--merch,
.section--press,
.section--connect {
  background: var(--bg-elevated);
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__inner--split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .section__inner--split {
    grid-template-columns: 280px 1fr;
    align-items: start;
    gap: 4rem;
  }
}

.section__head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section__head--center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section__lede {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 36rem;
}

.section__head--center .section__lede {
  margin-left: auto;
  margin-right: auto;
}

/* Listen */
.platform-grid {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.platform-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: #1a1a24;
  color: var(--text);
}

.platform-card__name {
  font-weight: 600;
  font-size: 1rem;
}

.platform-card__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.featured-release {
  margin-top: 3.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .featured-release {
    padding: 2.5rem;
  }
}

.featured-release h3 {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.featured-release__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
}

.featured-release__embed {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-release__embed iframe {
  display: block;
  width: 100%;
}

/* Live */
.show-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.show-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (max-width: 540px) {
  .show-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .show-row .btn {
    justify-self: center;
  }
}

.show-row--placeholder {
  grid-template-columns: 1fr;
  border-style: dashed;
  opacity: 0.9;
}

.show-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--accent-soft);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
}

.show-row__month {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.show-row__day {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.show-row__venue {
  margin: 0;
  font-weight: 600;
}

.show-row__city {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Merch */
.merch-grid {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.merch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.2s var(--ease);
}

.merch-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
}

.merch-card__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #2a2a35, #1a1a22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-card__name {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.merch-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* Live — TBA state */
.show-tba {
  margin-top: 2.5rem;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}

.show-tba__heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.show-tba__sub {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

/* About */
.about__photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

@media (max-width: 767px) {
  .about__photo {
    max-width: 220px;
  }
}

.about__body p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
}

.about__body p:last-child {
  margin-bottom: 0;
}

/* Press */
.press-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s var(--ease);
}

.press-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
}

.press-card__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}

.press-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.press-card__pub {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

.press-card__song {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 500;
}

.press-card__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.press-card__link:hover {
  text-decoration: underline;
}

/* Connect */
.section--connect {
  padding-bottom: 6rem;
}

.connect-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .connect-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.connect-grid h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.signup-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.signup-card > p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .signup-form {
    flex-direction: column;
  }
}

.signup-form__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.signup-form__input::placeholder {
  color: var(--text-muted);
}

.signup-form__input:focus {
  border-color: var(--accent);
}

.signup-form__btn {
  flex-shrink: 0;
}

.signup-form__note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  min-height: 1.25rem;
}

.signup-form__note.is-success {
  color: #5cb85c;
}

.signup-form__note.is-error {
  color: #e05555;
}

/* Social links */
.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.social-link:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: var(--bg-card);
  color: var(--text);
}

.social-link__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.social-link__label {
  font-weight: 600;
  font-size: 0.9375rem;
}

.social-link__handle {
  margin-left: auto;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .social-link__handle {
    display: none;
  }
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 600px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
