:root {
  --navy: #0b1340;
  --navy-alt: #0a0f36;
  --orange: #d17a2a;
  --cream: #f2ece7;
  --lavender: #c7cdea;
  --muted: #8b93c2;
  --border-soft: rgba(242, 236, 231, 0.08);
  --border-mid: rgba(242, 236, 231, 0.12);
  --border-strong: rgba(242, 236, 231, 0.25);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Manrope', sans-serif;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: var(--orange);
  color: var(--navy);
}

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

a {
  font-family: inherit;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--cream);
  margin: 14px 0 24px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(11, 19, 64, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  color: var(--lavender);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link--button {
  color: var(--cream);
  border: 1px solid var(--border-strong);
  padding: 8px 18px;
  border-radius: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link--button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 26px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-overlay[hidden] {
  display: none;
}

.nav-overlay a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 32px;
}

.nav-overlay a.nav-link--accent {
  color: var(--orange);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 19, 64, 0.35) 0%, rgba(11, 19, 64, 0.6) 55%, #0b1340 100%),
    linear-gradient(90deg, rgba(11, 19, 64, 0.75) 0%, rgba(11, 19, 64, 0.25) 55%, rgba(11, 19, 64, 0) 75%);
}

.hero-content {
  position: relative;
  padding: 0 48px 80px;
  width: 100%;
  animation: fadeUp 1s ease both;
}

.hero-flag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-flag span:last-child {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 9vw;
  line-height: 0.95;
  margin: 0;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--lavender);
  max-width: 640px;
  margin: 24px 0 0;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-radius: 2px;
  white-space: nowrap;
}

.btn--solid {
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
}

.btn--outline {
  border: 1px solid var(--border-strong);
  color: var(--cream);
  font-weight: 600;
}

/* ---------- Section layout ---------- */

section {
  padding: 140px 48px;
}

section.bg-alt {
  background: var(--navy-alt);
}

section.bg-base {
  background: var(--navy);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.grid-2--bio {
  grid-template-columns: 0.8fr 1.2fr;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ---------- Actu ---------- */

.actu-title {
  font-size: 56px;
  margin-bottom: 60px;
}

.album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

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

.album-cover--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: rgba(242, 236, 231, 0.04);
  border: 1px dashed var(--border-mid);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.actu-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--lavender);
  margin: 0 0 28px;
}

.actu-text p:last-of-type {
  margin-bottom: 40px;
}

.actu-text em {
  color: var(--cream);
  font-style: italic;
}

.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-mid);
}

.credit-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.credit-value {
  font-size: 16px;
  color: var(--cream);
}

.show-block {
  margin-top: 96px;
}

.show-block h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--cream);
}

.show-block .show-address {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 36px;
}

.date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
  gap: 24px;
  flex-wrap: wrap;
}

.date-row-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.date-row-day {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--cream);
  min-width: 70px;
}

.date-row-detail {
  font-size: 15px;
  color: var(--lavender);
}

.pill {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-strong);
  padding: 9px 18px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ---------- Bio ---------- */

.bio-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-title {
  font-size: 44px;
  margin: 14px 0 32px;
}

.bio-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--lavender);
  margin: 0 0 22px;
}

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

/* ---------- Musique ---------- */

.musique-title {
  font-size: 44px;
  margin: 14px 0 24px;
}

.musique-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--lavender);
  max-width: 760px;
  margin: 0 0 56px;
}

.platform-link {
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(242, 236, 231, 0.15);
  padding: 22px 26px;
  border-radius: 2px;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.platform-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.platform-link--featured {
  color: var(--navy);
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 700;
}

.platform-link--featured:hover {
  color: var(--navy);
  border-color: var(--orange);
}

.musique-note {
  font-size: 14px;
  color: var(--muted);
  margin: 20px 0 0;
}

/* ---------- Videos ---------- */

.videos-title {
  font-size: 44px;
  margin: 14px 0 56px;
}

.grid-3--videos {
  gap: 24px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Photos ---------- */

.photos-title {
  font-size: 44px;
  margin: 14px 0 12px;
}

.photos-credit {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 48px;
}

.grid-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}

.photo-cell {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.photo-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Dates ---------- */

.dates-title {
  font-size: 44px;
  margin: 14px 0 56px;
}

.dates-subtitle {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 8px;
}

.dates-subtitle--past {
  margin: 72px 0 8px;
}

.date-row--full {
  padding: 26px 0;
}

.date-row--full .date-row-left {
  gap: 28px;
}

.date-row--full .date-row-day {
  font-size: 38px;
  min-width: 90px;
}

.date-row-title {
  font-size: 17px;
  color: var(--cream);
}

.date-row-venue {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.date-row-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.date-row-price {
  font-size: 16px;
  color: var(--lavender);
}

.date-row--past {
  align-items: baseline;
  padding: 14px 0;
  border-bottom-color: var(--border-soft);
  gap: 20px;
}

.date-row--past .date-row-day {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--muted);
  min-width: 110px;
}

.date-row--past .date-row-venue-name {
  font-size: 15px;
  color: var(--lavender);
  flex: 1;
}

.date-row--past .date-row-city {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Contact ---------- */

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  font-weight: 500;
  margin: 18px 0 40px;
  color: var(--cream);
  line-height: 1.4;
}

.contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  text-decoration: none;
  color: var(--cream);
  border: 1px solid var(--border-strong);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

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

.footer {
  padding: 36px 48px;
  background: var(--navy);
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-mark {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--muted);
}

.footer-copyright {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Responsive ---------- */

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-title {
    font-size: 15vw;
  }

  .grid-2,
  .grid-2--bio,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .nav,
  section,
  .footer {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
