/* Ken Arlen clean JSON-driven site - no gradients */

:root {
  --ka-bg: #050505;
  --ka-panel: #f8f4ea;
  --ka-paper: #ffffff;
  --ka-ink: #14171b;
  --ka-muted: #6f6a61;
  --ka-gold: #d8b46a;
  --ka-gold-soft: #f2d995;
  --ka-line: #e7dfcf;
  --ka-shadow: 0 24px 80px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: url("/assets/images/hero-guitar.jpg") center center / cover fixed no-repeat;
  color: var(--ka-ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

.home-page {
  min-height: 100vh;
  background: transparent;
}

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

img { max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  color: rgba(255,255,255,.92);
  background: transparent;
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .9rem;
  text-shadow: 0 4px 18px rgba(0,0,0,.65);
}

.header-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 88px 20px 56px;
  text-align: center;
  color: var(--ka-gold);
  background: transparent;
}

.hero-inner,
.scroll-cue {
  position: relative;
  z-index: 1;
}

.hero-inner {
  width: min(920px, 100%);
}

.brand-mark {
  width: min(170px, 42vw);
  border-radius: 999px;
  box-shadow: 0 22px 70px rgba(0,0,0,.52);
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 18px 55px rgba(255,255,255,.72);
}

.hero p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--ka-gold-soft);
  
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  text-shadow: 0 8px 28px rgba(0,0,0,.72);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 2px solid rgba(255,255,255,.75);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: #fff;
}

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

.btn.primary:hover {
  background: var(--ka-gold-soft);
  border-color: var(--ka-gold-soft);
}

.main-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 60px;
  background: var(--ka-panel);
  box-shadow: var(--ka-shadow);
  position: relative;
  z-index: 2;
}

.section {
  padding: clamp(42px, 7vw, 78px);
  border-top: 2px solid var(--ka-line);
}

.section:first-child {
  border-top: 0;
}

.kicker {
  display: block;
  margin-bottom: 12px;
  color: #b89149;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
}

h2,
h3 {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .075em;
  color: var(--ka-ink);
  line-height: 1.1;
}

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

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

.latest {
  display: grid;
  grid-template-columns: minmax(280px, 48%) 1fr;
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  
}

.latest-cover {
  display: block;
  overflow: hidden;
  background: #ddd;
}

.latest-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

.latest-cover:hover img {
  transform: scale(1.04);
}

.latest-copy p,
.story p {
  color: #403e39;
  font-size: 1.05rem;
}

.latest-actions {
  justify-content: flex-start;
}

.latest-copy .btn,
.listen-card .btn {
  color: var(--ka-ink);
  border-color: var(--ka-ink);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.song-card {
  background: #fff;
  border: 1px solid var(--ka-line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.song-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  border-color: var(--ka-gold);
}

.song-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #ddd;
}

.song-body {
  padding: 20px;
}

.song-body p {
  margin: 0;
  color: var(--ka-muted);
  font-size: .92rem;
}

.listen-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.listen-card {
  background: #fff;
  border: 1px solid var(--ka-line);
  padding: 28px 22px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.listen-card:hover {
  transform: translateY(-4px);
  border-color: var(--ka-gold);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.listen-card strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.listen-card span {
  color: var(--ka-muted);
  font-size: .92rem;
}

.story {
  text-align: center;
}

.story p {
  max-width: 780px;
  margin: 0 auto;
}

.site-footer {
  padding: 30px 18px 46px;
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  text-shadow: 0 4px 18px rgba(0,0,0,.65);
}

/* Music detail page */

.music-page {
  min-height: 100vh;
  background: transparent;
  padding: 88px 16px 50px;
}

.music-detail-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  background: var(--ka-panel);
  box-shadow: var(--ka-shadow);
}

.music-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(30,37,45,.94);

  color: #000;
}

.music-nav a {
  display: inline-block;
  padding: 18px 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.music-hero {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: clamp(42px, 7vw, 78px);
  background: var(--ka-panel);
}

.music-cover {
  width: 40%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 24px 72px rgba(0,0,0,.18);
  border-radius: 14px;  
  background: #ddd;
}

.music-copy h1 {
  margin: 0 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.music-copy p {
  color: #4a4a45;
  font-style: italic;
  font-size: 1.1rem;
}

.embed-stack {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

iframe {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: #111;
}

.hidden {
  display: none !important;
}

.empty-note {
  padding: 22px;
  background: #fff;
  border: 2px dashed #d9cfbb;
  color: var(--ka-muted);
  text-align: center;
  font-style: italic;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  animation: arrowBounce 1.6s infinite;
}

.scroll-cue:hover {
  opacity: 1;
}

.scroll-cue svg {
  display: block;
}

.scroll-cue svg path {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}

.scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

@media (max-width: 860px) {
  body {
    background: url("/assets/images/hero-guitar.jpg") center center / cover scroll no-repeat;
  }

  .site-header {
    position: absolute;
    padding: 16px 18px;
  }

  .header-links a:nth-child(1) {
    display: none;
  }

  .hero {
    padding: 82px 18px 44px;
    background: transparent;
  }

  .brand-mark {
    width: 118px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 2.75rem;
    letter-spacing: .12em;
  }

  .hero p {
    max-width: 22rem;
    font-size: 1rem;
  }

  .actions {
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .main-shell {
    width: min(100% - 24px, 1180px);
    margin: 0 auto 0;
    box-shadow: none;
  }

  .section {
    padding: 42px 20px;
  }

  .latest,
  .music-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .latest-actions {
    justify-content: center;
  }

  .latest-cover,
  .music-cover {
    width: min(330px, 82vw);
    margin: 0 auto;
  }

  .music-grid,
  .listen-cards,
  .more-grid {
    grid-template-columns: 1fr;
  }

  .music-page {
    padding: 0;
    background: transparent;
  }

  .music-detail-shell {
    width: 100%;
    min-height: 100vh;
  }

  .music-nav a {
    padding: 15px 14px;
  }

  .music-nav .social-small {
    display: none;
  }
}

/* Platform header icons */
.platform-nav {
  gap: 22px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem !important;
  color: rgba(255,255,255,.92);
}

.platform-link:hover {
  color: var(--ka-gold);
}

.platform-text {
  font-size: .9rem !important;
}

.music-nav {
  color: #fff;
}

.music-nav-left,
.music-nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.music-nav .platform-link {
  padding: 18px 0;
  font-size: 1.25rem !important;
  color: rgba(255,255,255,.92);
}

.music-nav .platform-link:hover {
  color: var(--ka-gold);
}

.music-nav-right {
  padding-right: 28px;
}

/* Music detail cover */
.music-cover {
  width: min(320px, 38vw);
  max-width: 320px;
  border-radius: 14px;
}

/* Merged story block */
.hero-story {
  margin-top: 24px;
  max-width: 720px;
}

.hero-story p {
  margin: 0 0 14px;
  color: #403e39;
  font-size: 1.05rem;
  font-style: normal;
}

.hero-credits {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #ddd5c5;
  color: #777;
  font-size: 0.95rem;
  font-style: normal !important;
}

/* Audio embeds: Spotify / Apple Music / YouTube Music */
.audio-embeds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 28px 0 24px;
  align-items: start;
}

.audio-card {
  overflow: hidden;
  background: transparent;
  box-shadow: none !important;
  transition: none !important;
}

.audio-card:hover {
  transform: none !important;
}

.audio-card iframe,
.audio-embeds iframe {
  width: 100%;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: none !important;
  filter: none !important;
}

/* YouTube video */
.video-embed {
  margin-top: 18px;
}

.video-embed iframe {
  border-radius: 16px;
  overflow: hidden;
}

/* Legacy platform cards, kept harmless in case old markup exists */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 26px;
}

.platform-card {
  min-height: 108px;
  padding: 22px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--ka-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  color: var(--ka-ink);
  box-shadow: none !important;
  transition: border-color .18s ease;
}

.platform-card i {
  font-size: 2rem;
}

.platform-card:hover {
  border-color: var(--ka-gold);
  transform: none;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .audio-embeds {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .platform-nav {
    gap: 14px;
  }

  .platform-link {
    font-size: 1.1rem !important;
  }

  .platform-text {
    display: inline-flex !important;
  }

  .music-nav {
    gap: 14px;
  }

  .music-nav-left,
  .music-nav-right {
    gap: 14px;
  }

  .music-nav .platform-link {
    font-size: 1.1rem !important;
  }

  .music-nav-right {
    padding-right: 18px;
  }

  .music-cover {
    width: min(260px, 72vw);
    max-width: 260px;
    border-radius: 14px;
  }

  .platform-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.release-platforms {
  margin-top: 26px;
}

.platforms-label {
  display: block;
  margin-bottom: 12px;
  color: #777;
  font-size: .92rem;
  font-style: normal;
}

.release-platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.release-platform {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5dfd3;
  transition: transform .15s ease, opacity .15s ease;
}

.release-platform span {
  display: none;
}

.release-platform i {
  font-size: 1.2rem;
}

.release-platform img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-platform.active:hover {
  transform: translateY(-2px);
}

.release-platform.inactive {
  opacity: .22;
  filter: grayscale(1);
}




/* About page */
.about-hero {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
  padding: clamp(42px, 7vw, 78px);
  background: #fff;
}

.about-image-panel {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
}

.about-image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.about-copy h1 {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ka-ink);
}

.about-copy p {
  color: #403e39;
  font-size: 1.08rem;
}

.about-lead {
  color: #8f6f33 !important;
  font-style: italic;
  font-size: 1.28rem !important;
}

.about-manifesto {
  text-align: center;
}

.manifesto-lines {
  margin: 28px auto 0;
  max-width: 780px;
}

.manifesto-lines p {
  margin: 10px 0;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: #2a2925;
  font-style: italic;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.about-card {
  background: #fff;
  border: 1px solid var(--ka-line);
  border-radius: 16px;
  padding: 26px 22px;
}

.about-card h4 {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .98rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ka-ink);
}

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

.about-platforms {
  text-align: center;
}

.about-platforms p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 860px) {
  .about-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 42px 20px;
  }

  .about-image-panel {
    max-width: 340px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}





