:root {
  --bg: #000;
  --bg-soft: #050506;
  --surface: #0b0b0e;
  --surface-raised: #121216;
  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.24);
  --text: #f6ecdc;
  --muted: rgba(255,255,255,0.72);
  --soft-text: rgba(255,255,255,0.55);
  --accent: #8a63ff;
  --accent-soft: #f1e4d2;
  --site-width: 1200px;
  --content-width: 860px;
  --f-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; background: #000; }
body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: var(--text);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.32); }

a { color: inherit; text-decoration: none; transition: color .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease, transform .18s ease; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(28,28,29,0.95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: var(--site-width);
  height: 58px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.brand:hover { opacity: .88; }
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav a:hover, .nav a:focus { color: #fff; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: #fff; }

.hero {
  min-height: clamp(440px, 58vh, 580px);
  padding: 6rem 1.5rem 4.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.05), transparent 28%),
    linear-gradient(180deg, #040405 0%, #000 76%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://baltimega.com/wp-content/uploads/2026/04/Baltimega-Logo-Wide-Transparent-scaled.png') center 54% / min(58vw, 720px) auto no-repeat;
  opacity: 0.095;
  filter: grayscale(1) brightness(0.85);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
.hero-logo {
  width: min(80vw, 600px);
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
}
.hero-tagline {
  margin: 0 0 1.7rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 720px;
  margin: -0.4rem auto 1.8rem;
  color: var(--accent-soft);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}
.hero-copy:empty { display: none; }
.hero-copy p { margin: 0 0 1rem; }
.hero-btns { display: flex; justify-content: center; margin-top: 0.3rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 1rem 1.7rem;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn:hover, .btn:focus { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.58); color: #fff; }

.main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background: #000;
}
.post-page { padding-top: 4rem; }
.section-head {
  max-width: var(--content-width);
  margin: 0 auto 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.section-head h1, .section-head h2 {
  margin: 0;
  color: #fff;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.page-eyebrow {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.view-all {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.view-all:hover { color: #fff; }

.post {
  max-width: var(--content-width);
  margin: 0 auto 1.6rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14,14,18,0.96) 0%, rgba(8,8,10,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.post:hover { border-color: rgba(255,255,255,0.16); }
.post-body { padding: 1.75rem 1.75rem 1.25rem; }
.post-eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.post-title {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
}
.post-title a { color: inherit; }
.post-title a:hover { opacity: .86; }
.post-content {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.82;
}
.post-content p { margin: 0 0 1rem; }
.post-content p:last-child { margin-bottom: 0; }
.post-content h1, .post-content h2, .post-content h3, .post-content h4 {
  margin: 1.45rem 0 0.6rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
}
.post-content h1 { font-size: 1.8rem; }
.post-content h2 { font-size: 1.55rem; }
.post-content h3 { font-size: 1.28rem; }
.post-content h4 { font-size: 1.1rem; }
.post-content ul, .post-content ol { margin: 0.7rem 0 1rem 1.35rem; }
.post-content li { margin: 0 0 0.4rem; }
.post-content blockquote {
  margin: 1.2rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 3px solid var(--accent);
  color: #fff;
}
.post-content img {
  width: 100%;
  margin: 1.15rem 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.post-content a { color: var(--accent-soft); border-bottom: 1px solid rgba(241,228,210,0.28); }
.post-content a:hover { border-bottom-color: rgba(241,228,210,0.75); }
.post-content code {
  padding: 0.15rem 0.45rem;
  background: rgba(255,255,255,0.06);
  color: var(--accent-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
}
.post-content pre {
  margin: 1rem 0;
  padding: 1rem;
  overflow-x: auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-size: 0.88rem;
}
.post-content iframe, .post-content video, .post-content object, .post-content embed {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: #000;
}
.post-content iframe[src*="youtube"], .post-content iframe[src*="vimeo"] { aspect-ratio: 16 / 9; height: auto; }
.post-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding: 1rem 1.75rem 1.15rem;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.post-date {
  color: var(--soft-text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.post-date:hover { color: #fff; }
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-left: auto;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--soft-text);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tag-pill:hover { color: #fff; border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.04); }

.auto-embed {
  margin: 1.25rem 0;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
}
.auto-embed iframe { width: 100%; border: 0; display: block; }
.auto-embed.embed-youtube, .auto-embed.embed-vimeo { aspect-ratio: 16 / 9; position: relative; height: auto; }
.auto-embed.embed-youtube iframe, .auto-embed.embed-vimeo iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.auto-embed.embed-spotify iframe { height: 152px; }
.auto-embed.embed-soundcloud iframe { height: 166px; }
.auto-embed.embed-applemusic iframe { height: 175px; }
.auto-embed.embed-bandcamp { padding: 0; }
.bandcamp-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
.bandcamp-card:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.bandcamp-card-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.bandcamp-card-meta { flex: 1; min-width: 0; }
.bandcamp-card-eyebrow {
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.bandcamp-card-title {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bandcamp-card-artist {
  color: var(--soft-text);
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bandcamp-card-cta {
  color: var(--accent-soft);
  flex-shrink: 0;
  padding-left: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 0;
  padding: 3.5rem 1.5rem 2rem;
  background: linear-gradient(180deg, #070708 0%, #000 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  max-width: var(--site-width);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.footer-heading {
  margin: 0 0 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-list a {
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-list a:hover { color: #fff; }
.footer-bookings { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.8; }
.footer-bookings a { color: var(--accent-soft); font-weight: 500; }
.footer-bookings a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--site-width);
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--soft-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-bottom a { color: var(--soft-text); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1120px) {
  .nav { gap: 0.9rem; }
  .nav a { font-size: 0.68rem; }
}
@media (max-width: 960px) {
  .header-inner { padding: 0 1rem; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: rgba(5,5,6,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.2rem;
    gap: 0.9rem;
  }
  body.nav-open .nav { display: flex; }
  .nav a { font-size: 0.8rem; }
  .hero { min-height: auto; padding-top: 5rem; padding-bottom: 4rem; }
}
@media (max-width: 720px) {
  .hero { padding-left: 1rem; padding-right: 1rem; }
  .hero-logo { width: min(92vw, 520px); }
  .hero-tagline { font-size: 0.74rem; letter-spacing: 0.24em; }
  .hero-copy { font-size: 1rem; }
  .btn { width: min(100%, 360px); }
  .main { padding: 3rem 1rem; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .post-body { padding: 1.35rem 1.2rem 1.1rem; }
  .post-footer { padding: 1rem 1.2rem 1.15rem; }
  .post-tags { width: 100%; margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
