/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --color-bg:      #fafaf8;
  --color-text:    #1a1a1a;
  --color-muted:   #666;
  --color-border:  #e4e4e0;
  --color-overlay: rgba(26, 26, 26, 0.72);

  --max-width: 1100px;
  --section-gap: 4rem;
  --nav-height: 60px;
}

/* ─── Reset / Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Announcement bar ──────────────────────────────────────────────────── */
.announcement {
  background: var(--color-text);
  color: var(--color-bg);
  text-align: center;
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.announcement a {
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s;
}

.announcement a:hover {
  border-color: #fff;
}

/* ─── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  background: var(--color-bg);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--color-text);
  transition: opacity 0.2s;
}

/* ─── Sections ──────────────────────────────────────────────────────────── */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-gap) 2rem;
}


.section--narrow {
  max-width: 680px;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.section--narrow .section-title {
  margin-bottom: 1rem;
}

/* ─── Albums ────────────────────────────────────────────────────────────── */
.albums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.album-cover-link { display: block; }

.album-cover-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #eee;
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.album-cover-wrap:hover .album-cover {
  transform: scale(1.04);
}

.album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-overlay);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-cover-wrap:hover .album-overlay { opacity: 1; }

.album-info { margin-top: 0.75rem; }

.album-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.album-meta {
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* ─── Social ────────────────────────────────────────────────────────────── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.social-link:hover { opacity: 1; }

.social-link[aria-label="Spotify"]     { color: #1DB954; }
.social-link[aria-label="Apple Music"] { color: #FC3C44; }
.social-link[aria-label="YouTube"]     { color: #FF0000; }
.social-link[aria-label="SoundCloud"]  { color: #FF5500; }
.social-link[aria-label="Instagram"]   { color: #E1306C; }
.social-link[aria-label="Facebook"]    { color: #1877F2; }

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ─── Subscribe ─────────────────────────────────────────────────────────── */
.section-intro {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.subscribe-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

.subscribe-input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border);
  border-right: none;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}

.subscribe-input:focus { border-color: var(--color-text); }

.subscribe-btn {
  padding: 0.7rem 1.4rem;
  background: var(--color-text);
  color: var(--color-bg);
  border: 1px solid var(--color-text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}

.subscribe-btn:hover {
  background: transparent;
  color: var(--color-text);
}

/* ─── Contact ───────────────────────────────────────────────────────────── */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  text-align: left;
}

.contact-block {
  min-width: 180px;
}

.contact-block h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.contact-block p,
.contact-block a {
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-block a {
  border-bottom: 1px solid var(--color-border);
  transition: border-color 0.2s;
}

.contact-block a:hover { border-color: var(--color-text); }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.footer a {
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s, border-color 0.2s;
}

.footer a:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}

/* ─── Video ─────────────────────────────────────────────────────────────── */
.section-video {
  padding-top: var(--nav-height);
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrap iframe,
.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-play svg {
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: transform 0.15s;
}

.yt-facade:hover .yt-play svg {
  transform: scale(1.1);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .albums {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.2rem;
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-toggle { display: flex; }

  .albums {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-input {
    border-right: 1px solid var(--color-border);
    border-bottom: none;
  }

  .section { padding: 3rem 1.25rem; }
}

@media (max-width: 380px) {
  .albums {
    grid-template-columns: 1fr;
  }
}
