:root {
  --bg: #050505;
  --text: #f7f7f2;
  --muted: #b3b3ad;
  --accent: #c7a04f;
  --accent-dark: #8a6b2c;
  --card: #101010;
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 1200px;
  --transition: all 0.3s ease;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1.1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 0 0.5rem;
  margin-right: 2rem;
}

.brand-logo {
  height: 120px;
  max-height: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.35rem;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.65)) brightness(1.08) contrast(1.05);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  color: var(--text);
  font-size: 1.3rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.75rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  margin-top: 1.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.4) 45%, rgba(5, 5, 5, 0) 80%);
  z-index: 0;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1.15;
  margin: 0.5rem 0 1.1rem;
}

.hero-content .subheadline {
  color: var(--muted);
  max-width: 36ch;
}

.overline {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #121212;
  box-shadow: 0 18px 35px rgba(199, 160, 79, 0.35);
}

.btn.primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 22px 40px rgba(199, 160, 79, 0.45);
  transform: translateY(-2px);
}

.btn.outline {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.outline:hover {
  background: rgba(199, 160, 79, 0.08);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn.ghost:hover {
  border-color: var(--accent);
}

.section {
  margin-top: 6rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-header h2 {
  font-family: "Marcellus", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0;
}

.divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}

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

.album-card,
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.album-card img {
  border-radius: 12px;
  height: 220px;
}

.music-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.25rem;
  margin-top: 2.5rem;
}

.resources p {
  max-width: 70ch;
}

.resource-subheading {
  margin-top: 2.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.resource-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.resource-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resource-card h4 {
  margin: 0;
  font-size: 1.1rem;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.preview-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.preview-card img {
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0b0b0b;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  display: block;
}

.preview-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.preview-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.track-links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.track-links .btn.song-link {
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
}

.shop-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

audio {
  width: 100%;
  filter: invert(0.9) hue-rotate(180deg);
}

.cta-text {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.secondary-contact {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.email-link {
  color: var(--accent);
  margin-left: 0.35rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.email-link:hover {
  border-color: var(--accent);
}

.connect-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.connect-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.connect-list span {
  font-weight: 600;
}

.connect-list a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-figure {
  position: relative;
  min-height: 440px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 1.5rem;
    flex-direction: column;
    background: rgba(5, 5, 5, 0.98);
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: none;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .platform-links {
    width: 100%;
  }

  .brand-logo {
    height: 72px;
    max-height: 72px;
  }

  .connect-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  main {
    padding: 3rem 1rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    height: 60px;
    max-height: 60px;
  }
}:root {
  --bg: #0d0f14;
  --panel: #141821;
  --text: #f5f1e8;
  --muted: #bfb6a6;
  --gold: #d9a441;
  --gold-dark: #b88526;
  --line: rgba(255,255,255,0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(13, 15, 20, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}

.site-logo {
  max-height: 120px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 14px;
  color: var(--text);
  opacity: 0.9;
}

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

.hero-section,
.content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.coaching-grid,
.music-grid,
.resource-grid {
  display: grid;
  gap: 32px;
}

.hero-grid,
.coaching-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.95;
  margin: 0 0 20px;
}

.eyebrow,
.available-label,
.preview-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-subtext,
.section-intro {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-buttons,
.music-buttons,
.services-contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn.small {
  padding: 10px 16px;
  font-size: 14px;
}

.btn-primary {
  background: var(--gold);
  color: #111;
}

.btn-primary:hover {
  background: #e9b558;
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(217,164,65,0.1);
}

.btn-dark {
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.btn-dark:hover {
  background: rgba(255,255,255,0.08);
}

.hero-image,
.coaching-image {
  width: 100%;
  border-radius: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 24px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

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

.music-card,
.resource-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.music-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #0f1218;
  border-radius: 16px;
  margin-bottom: 18px;
}

.audio-player {
  width: 100%;
  margin: 16px 0 20px;
}

.coaching-copy p,
.narrow p,
.container p {
  color: var(--muted);
}

.resource-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
}

.resource-card h3 {
  font-size: 1.2rem;
}

.connect-list {
  display: grid;
  gap: 18px;
}

.connect-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.connect-list span {
  color: var(--text);
  font-weight: 700;
}

.connect-list a {
  color: var(--gold);
  text-align: right;
}

.site-footer {
  padding: 40px 0 60px;
}

.footer-inner {
  text-align: center;
  color: var(--muted);
}

.footer-logo {
  max-height: 54px;
  margin: 0 auto 14px;
}

@media (max-width: 900px) {

  .hero-grid,
  .coaching-grid,
  .music-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: center;
  }

  .header-inner {
    flex-direction: column;
  }

  .connect-list div {
    flex-direction: column;
  }

  .connect-list a {
    text-align: left;
}.site-logo {
  max-height: 140px !important;
}