:root {
  --bg: #0b0b0e;
  --panel: #121218;
  --panel-soft: #171720;
  --text: #ececf1;
  --muted: #a6a6b4;
  --line: rgba(236, 236, 241, 0.2);
  --accent: #f5f5f7;
}

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

html,
body {
  min-height: 100%;
  background-color: #0b0b0e;
}

body {
  background:
    radial-gradient(1200px 420px at 50% -10%, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(180deg, #0e0e13 0%, var(--bg) 100%);
  color: var(--text);
  font-family: 'Sora', sans-serif;
}

.page {
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 22px 56px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  transition: color 140ms ease;
}

nav a:hover,
nav a[aria-current='page'] {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 160px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 26px;
}

.home-header {
  justify-content: center;
}

.home-logo {
  display: none;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 9vw, 6.3rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.hero-image {
  width: min(420px, 84vw);
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background: #121218;
  object-fit: cover;
  display: block;
}

.cta {
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  padding: 12px 24px;
  letter-spacing: 0.14em;
  transition: background 140ms ease, color 140ms ease;
}

.cta:hover {
  background: var(--accent);
  color: #101014;
}

.section-title {
  margin-bottom: 18px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.14em;
}

.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  padding: 14px;
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 14px;
}

.listen-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
  gap: 14px;
  justify-content: start;
}

.listen-image-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0b0b10;
}

.listen-image-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 180ms ease, opacity 180ms ease;
}

.listen-image-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  background: rgba(10, 10, 14, 0.74);
  border: 1px solid rgba(236, 236, 241, 0.25);
  padding: 8px 10px;
}

.listen-image-card:hover img {
  transform: scale(1.02);
  opacity: 1;
}

.link-card {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  letter-spacing: 0.08em;
  transition: border-color 140ms ease, transform 140ms ease;
}

.link-card:hover {
  border-color: rgba(236, 236, 241, 0.52);
  transform: translateY(-1px);
}

.media-card {
  padding: 0;
  display: grid;
  justify-items: center;
}

.media-stack {
  display: grid;
  gap: 18px;
}

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

.embed-frame {
  width: min(360px, 100%);
  aspect-ratio: 16 / 9;
  background: #0b0b10;
}

.media-vertical .embed-frame {
  aspect-ratio: 9 / 16;
  width: min(320px, 100%);
}

.embed-frame iframe,
.embed-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.ig-embed-wrap {
  min-height: 420px;
  background: #fff;
  display: grid;
  place-items: center;
  width: 100%;
}

.ig-embed-wrap .instagram-media {
  margin: 0 !important;
  max-width: 320px !important;
  width: 100% !important;
}

.contact {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
}

.contact a {
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.contact a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .listen-grid,
  .listen-image-grid,
  .media-embed-row {
    grid-template-columns: 1fr;
  }

  header {
    margin-bottom: 30px;
  }

  .hero {
    min-height: calc(100vh - 140px);
  }
}
