/* Noć Muzičkih Fenjera — atmosferski večernji koncert */

:root {
  --bg-deep: #0a0c10;
  --bg-elevated: #12151e;
  --bg-card: #161a26;
  --text: #f2ebe3;
  --text-muted: #a89f94;
  --accent: #e4a54a;
  --accent-soft: rgba(228, 165, 74, 0.15);
  --accent-glow: rgba(228, 165, 74, 0.45);
  --line: rgba(242, 235, 227, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

a:hover {
  color: #f0c56e;
}

/* Ambient lantern field */
.lantern-field {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(228, 165, 74, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 30%, rgba(180, 120, 60, 0.08), transparent 45%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(228, 165, 74, 0.06), transparent 55%),
    linear-gradient(180deg, #0a0c10 0%, #0d1018 40%, #0a0c10 100%);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(10, 12, 16, 0.92), rgba(10, 12, 16, 0.65), transparent);
  backdrop-filter: blur(8px);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

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

.site-nav {
  display: flex;
  gap: 1.75rem;
}

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

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

.site-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  /*
   * backdrop-filter na headeru pravi containing block — fixed .site-nav
   * ostaje u okviru uske trake headera i „seče“ meni (vidljiva ~3 stavke).
   * Na mobilnom uklanjamo blur i dajemo čvrstu pozadinu.
   */
  .site-header {
    backdrop-filter: none;
    background: rgba(10, 12, 16, 0.97);
  }

  .logo {
    position: relative;
    z-index: 102;
  }

  .nav-toggle {
    display: flex;
    z-index: 102;
    position: relative;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    padding: max(5.5rem, env(safe-area-inset-top, 0px)) 1.5rem max(2rem, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    background: var(--bg-deep);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
    z-index: 101;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1.25rem;
    color: var(--text);
    flex-shrink: 0;
  }
}

/* Hero */
main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

.hero__inner {
  max-width: 42rem;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
  letter-spacing: 0.06em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  background: linear-gradient(135deg, #fff8f0 0%, #e8d5c4 45%, #c9a87c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(228, 165, 74, 0.2));
}

.hero__lead {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s, color 0.25s;
}

.btn--primary {
  background: linear-gradient(145deg, #d4923a, #b87428);
  color: #1a1208;
  border-color: rgba(255, 220, 160, 0.35);
  box-shadow: 0 0 0 1px rgba(228, 165, 74, 0.25), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(145deg, #e0a24a, #c88230);
  color: #1a1208;
  box-shadow: 0 0 30px var(--accent-glow);
}

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

.btn--ghost:hover {
  border-color: rgba(228, 165, 74, 0.4);
  color: var(--accent);
}

.btn--wide {
  width: 100%;
}

.hero__scroll-hint {
  margin-top: auto;
  padding-top: 4rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  animation: pulse-hint 3s ease-in-out infinite;
}

@keyframes pulse-hint {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.65;
  }
}

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

.section__container {
  max-width: 960px;
  margin: 0 auto;
}

.section__container--narrow {
  max-width: 520px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 1rem;
  color: #faf6f0;
}

.section__intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.section--story {
  background: linear-gradient(180deg, transparent, rgba(18, 21, 30, 0.6) 20%, rgba(18, 21, 30, 0.6) 80%, transparent);
}

.event-flow {
  max-width: 42rem;
  margin: 0 auto 3rem;
  padding: 1.75rem 1.5rem 1.85rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.event-flow__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 1.5rem;
  color: #faf6f0;
}

.event-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.event-flow__step {
  margin: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.event-flow__step:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.event-flow__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.event-flow__text {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.68;
  font-size: 1.02rem;
}

.story__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .story__grid {
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: start;
  }
}

.story__block {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.story__block h2,
.story__block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--accent);
}

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

.story__block--accent {
  background: linear-gradient(160deg, var(--accent-soft), transparent 70%);
  border-color: rgba(228, 165, 74, 0.2);
}

.story__block--accent blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: #e8dfd4;
}

/* Concerts */
.section--concerts {
  padding-top: 3rem;
}

.concert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.concert-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s;
}

.concert-card:hover {
  border-color: rgba(228, 165, 74, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.concert-card--dim {
  opacity: 0.85;
}

.concert-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
  padding: 0.75rem 0.5rem;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--line);
}

.concert-card__day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.concert-card__month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.concert-card__year {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.concert-card__body h2,
.concert-card__body h3,
.concert-card__heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.concert-card__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.concert-card__tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}

.concert-card__cta {
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 165, 74, 0.35);
  color: var(--accent);
}

.concert-card__cta:hover {
  background: var(--accent-soft);
  color: #f0c56e;
}

@media (max-width: 640px) {
  .concert-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .concert-card__date {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }

  .concert-card__cta {
    justify-self: center;
  }
}

/* Artists */
.section--artists {
  background: linear-gradient(180deg, transparent, rgba(15, 18, 26, 0.5) 30%, transparent);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.artist-card {
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.artist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 165, 74, 0.2);
}

.artist-card__visual {
  height: 160px;
  background:
    linear-gradient(145deg, rgba(228, 165, 74, 0.25), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(200, 150, 80, 0.3), transparent 50%),
    #1a1e2a;
}

.artist-card__visual--2 {
  background:
    linear-gradient(200deg, rgba(100, 120, 160, 0.35), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(228, 165, 74, 0.15), transparent 45%),
    #1a1e2a;
}

.artist-card__visual--3 {
  background:
    linear-gradient(90deg, rgba(228, 165, 74, 0.2), transparent),
    linear-gradient(0deg, #1f2433, #12151e);
}

.artist-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 1rem 1.25rem 0.25rem;
}

.artist-card__role {
  margin: 0 1.25rem 0.75rem;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.artist-card p:last-child {
  margin: 0 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Contact */
.section--contact {
  padding-bottom: 6rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(228, 165, 74, 0.45);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(168, 159, 148, 0.6);
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-alt {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-alt p {
  margin: 0.5rem 0;
}

.contact-alt a {
  color: var(--text);
}

.contact-alt a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

/* Multi-page layout */
.page-main {
  position: relative;
  z-index: 1;
}

.section--page-top {
  padding-top: 7rem;
}

.section__container--wide {
  max-width: 820px;
}

.section__outro {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-muted);
  font-weight: 300;
}

.section__outro a {
  font-weight: 500;
}

/* Splash home */
.page--splash .site-header {
  background: linear-gradient(to bottom, rgba(10, 12, 16, 0.95), rgba(10, 12, 16, 0.5), transparent);
}

.splash {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 6.5rem 1.5rem 4rem;
  text-align: center;
}

.splash__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 28rem;
}

.splash__copy {
  width: 100%;
}

@media (min-width: 900px) {
  .splash {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    text-align: left;
    max-width: 1320px;
    margin: 0 auto;
  }

  .splash__content {
    flex: 1;
    min-width: 0;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(308px, min(45vw, 420px));
    gap: 2rem 2.75rem;
    align-items: start;
  }

  .splash__copy {
    min-width: 0;
  }

  .splash__art {
    flex: 0 0 auto;
  }

  .splash__promo {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
    align-self: start;
  }
}

.splash__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lantern-svg {
  width: min(260px, 72vw);
  height: auto;
  filter: drop-shadow(0 0 50px rgba(228, 165, 74, 0.35)) drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.lantern-svg__pulse {
  animation: lantern-flicker 5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes lantern-flicker {
  0%,
  100% {
    opacity: 0.95;
  }
  40% {
    opacity: 0.82;
  }
  55% {
    opacity: 1;
  }
  70% {
    opacity: 0.88;
  }
}

.splash__eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
  letter-spacing: 0.08em;
}

.splash__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, #fff8f0 0%, #e8d5c4 45%, #c9a87c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 36px rgba(228, 165, 74, 0.18));
}

.splash__event-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f0e8de;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.splash__event-venue {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--accent);
  line-height: 1.5;
}

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

.splash__dive {
  margin-bottom: 2rem;
}

.btn--dive {
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 2.25rem;
  min-width: 220px;
}

.btn--dive__label {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn--dive__hint {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  color: rgba(26, 18, 8, 0.75);
}

.splash__quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .splash__quick {
    justify-content: flex-start;
  }
}

.splash__quick a {
  color: var(--text-muted);
  font-weight: 500;
}

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

.splash__dot {
  color: var(--line);
  user-select: none;
}

.splash__promo {
  display: block;
  margin-top: 2.25rem;
  width: 100%;
  max-width: min(420px, 92vw);
  margin-left: auto;
  margin-right: auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(228, 165, 74, 0.2);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(242, 235, 227, 0.06);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.splash__promo:hover {
  border-color: rgba(228, 165, 74, 0.35);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(228, 165, 74, 0.12);
  transform: translateY(-2px);
}

.splash__promo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.splash__promo-caption {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-muted);
  background: rgba(10, 12, 16, 0.88);
}

@media (min-width: 900px) {
  .splash__promo-caption {
    text-align: right;
    padding-right: 0.75rem;
  }
}

/* Artists detail page */
.section--artists-page .artist-profile {
  margin-bottom: 4.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.section--artists-page .artist-profile:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.artist-profile__intro-row {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .artist-profile__intro-row {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

.artist-profile__photo {
  margin: 0;
}

.artist-profile__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  aspect-ratio: 1;
}

.artist-profile__header {
  margin-bottom: 0;
}

.artist-profile__name {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #faf6f0;
}

.artist-profile__tagline {
  margin: 0;
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.5;
}

.artist-profile__body p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
}

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

.artist-profile__body strong {
  color: #dcd4c8;
  font-weight: 500;
}

.artist-profile__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.35rem 0 0.65rem;
  color: #e8dfd4;
}

.artist-profile__body h3:first-child {
  margin-top: 0;
}

.video-block {
  margin: 2rem 0;
}

.video-block__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #eee8df;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* YouTube Shorts (9:16) */
.video-wrap--short {
  max-width: min(340px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  height: auto;
  aspect-ratio: 9 / 16;
}

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

.video-block__note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.video-block__note code {
  font-size: 0.78em;
  padding: 0.1em 0.35em;
  background: var(--bg-card);
  border-radius: 4px;
  color: var(--accent);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.social-row a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social-row a:hover {
  color: var(--accent);
}
