/* =========================================================
   CSS VARIABLES
========================================================= */
:root{
  --bg:#f6f6f6;
  --paper:#f2efe6;
  --text:#141414;
  --muted:#5a5a5a;
  --line:#ddd3bf;
  --accent:#d2b86b; /* warm gold */
  --radius:18px;
  --max:1040px;
  --shadow:0 12px 30px rgba(0,0,0,.10);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

/* =========================================================
   BASE / RESET
========================================================= */
*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);

  background-image:
    url("../img/background.png"),
    linear-gradient(rgba(246,246,246,.92), rgba(246,246,246,.92));
  background-position: center, 0 0;
  background-size: cover, auto;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, scroll;
}

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

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

/* Screen-reader only helper */
.srOnly{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =========================================================
   HEADER / NAV
========================================================= */
.header__inner{
  border: 1px solid rgba(221,211,191,.85);
  background: rgba(242,239,230,.85);
  border-radius: 999px;
  padding: 10px 14px;

  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;

  margin: 12px auto;                /* spacing from top */
  padding: 12px 18px;               /* correct pill padding */
  border-radius: 999px;

  background: rgba(242,239,230,.88);
  border: 1px solid rgba(221,211,191,.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.brand{
  font-weight:700;
  letter-spacing:.2px;
}

/* Nav (desktop default) */
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav__link{
  font-size:14px;
  opacity:.85;
}
.nav__link:hover{opacity:1}

.nav__link.isActive{
  opacity:1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav__cta{
  padding:10px 14px;
  border-radius:999px;
  background:var(--accent);
  color:#111;
  font-weight:700;
  font-size:14px;
}

/* Mobile menu button */
.navToggle{
  display:none;
  border:1px solid var(--line);
  background:transparent;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

.navToggle__icon{
  display:block;
  width:20px;
  height:2px;
  background:#111;
  position:relative;
}

.navToggle__icon::before,
.navToggle__icon::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background:#111;
}

.navToggle__icon::before{top:-6px}
.navToggle__icon::after{top:6px}

/* =========================================================
   BUTTONS
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  border:1px solid var(--line);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    border-color .18s ease;
}

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

.btn--ghost{
  background:transparent;
}

/* Hover / active effects */
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  background-color: #c6ab5f; /* slightly deeper gold */
}

.btn--ghost:hover{
  background-color: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.25);
}

.btn:active{
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

/* =========================================================
   HERO
========================================================= */
.hero{
  padding:64px 0 40px; /* more vertical breathing room */
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px; /* more space between columns */
  align-items:center;

  background: linear-gradient(180deg, #f6f2e8 0%, #efe8d6 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,.12), 0 8px 18px rgba(0,0,0,.08);

  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  padding:40px; /* looser card padding */
}

.hero__kicker{
  margin:0 0 14px;
  font-size:12px;
  letter-spacing:.18em;
  color:var(--muted);
}

.hero__title{
  margin:0 0 20px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.12; /* slightly more relaxed */
}

.hero__sub{
  margin:0 0 26px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width: 46ch;
}

.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* Album art placeholder */
.hero__art{
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,.02));
  border:1px solid var(--line);
  min-height:300px; /* bigger so it doesn't feel cramped */
  display:grid;
  place-items:center;
}

.hero__art img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.hero__artInner{
  font-weight:700;
  color:rgba(0,0,0,.55);
}

/* =========================================================
   HERO TITLE SHINE
========================================================= */
.shine{
  position: relative;
  background: linear-gradient(
    110deg,
    #111 46%,
    #d2b86b 49%,
    #111 52%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineMove 16s ease-in-out infinite;
}

@keyframes shineMove{
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 860px){
  .hero__grid{
    grid-template-columns:1fr;
    padding:28px;
  }
  .hero{ padding:46px 0 28px; }
  .hero__art{ min-height:240px; }
}

@media (max-width: 720px){
  .navToggle{ display:inline-flex; }

  .nav{
    position:absolute;
    top:62px;
    right:20px;
    left:20px;
    background: rgba(242,239,230,.98);
    border:1px solid var(--line);
    border-radius:16px;
    padding:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    box-shadow: var(--shadow);
  }

  .nav.isOpen{ display:flex; }
  .nav__cta{ width:100%; text-align:center; }
}

/* Optional: extra premium padding on very large screens */
@media (min-width: 1100px){
  .hero__grid{ padding:48px; }
}

/* Mobile hero refinement */
@media (max-width: 600px){
  .hero{ padding: 40px 0 28px; }

  .hero__grid{
    padding: 24px;
    gap: 22px;
  }

  .hero__title{
    font-size: 30px;
    line-height: 1.15;
  }

  .hero__sub{ font-size: 15px; }

  .hero__actions{ gap: 12px; }

  .btn{ padding: 14px 18px; /* better thumb targets */ }

  .hero__art{ min-height: 180px; }
}

/* =========================================================
   LATEST MUSIC
========================================================= */
.latest{
  padding: 36px 0 64px;
}

.sectionTitle{
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.latestCard{
  background: #efe8d6;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  padding: 22px;
  box-shadow: var(--shadow);
}

.latestCard__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.latestCard__title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.latestCard__meta{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 52ch;
}

.latestCard__cta{
  padding: 10px 14px;
  font-size: 13px;
}

.trackList{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.trackRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.35);
}

.trackRow{
  transition: background-color .18s ease, transform .18s ease;
}

.trackRow:hover{
  background: rgba(255,255,255,.55);
  transform: translateY(-1px);
}

.trackRow__name{
  font-weight: 700;
  font-size: 14px;
}

.trackRow__time{
  font-weight: 600;
  font-size: 12px;
  color: rgba(0,0,0,.45);
}

/* Mobile */
@media (max-width: 600px){
  .latest{
    padding: 18px 0 44px;
  }

  .latestCard{
    padding: 18px;
  }

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

  .latestCard__cta{
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   SECTION WRAPPER (reusable)
================================ */
.section{
  padding: 46px 0;
}

.section__head{
  margin-bottom: 16px;
}

.section__kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
}

.section__title{
  margin: 0;
  font-size: 22px;
  letter-spacing: .2px;
}

/* ===============================
   VERSE CARD
================================ */
.verseCard{
  background: rgba(242,239,230,.88);
  border: 1px solid rgba(221,211,191,.85);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  padding: 24px;
}

.verseCard__icon{
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(210,184,107,.18);
  border: 1px solid rgba(221,211,191,.85);
  margin-bottom: 14px;
  font-weight: 800;
}

.verseCard__quote{
  margin: 0;
}

.verseCard__quote p{
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.verseCard__meta{
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.verseCard__ref{
  color: var(--muted);
  font-weight: 600;
}

/* ===============================
   ABOUT CARD
================================ */
.aboutCard{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;

  background: rgba(242,239,230,.88);
  border: 1px solid rgba(221,211,191,.85);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  padding: 22px;
}

.aboutCard__media{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(221,211,191,.85);
  background: rgba(0,0,0,.03);
}

.aboutCard__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.aboutCard__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutCard__heading{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: .2px;
}

.aboutCard__text{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.aboutCard__actions{
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===============================
   Secondary Primary Button (Small)
================================ */
.btn--primary-small{
  width: fit-content;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;

  background: var(--accent);
  color: #111;
  border: 1px solid transparent;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease;
}

.btn--primary-small:hover{
  background-color: #c6ab5f;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.16);
}

/* Video modifier: keeps the same aboutCard look */
.aboutCard--video .videoFrame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 18px; /* match your image rounding */
  overflow: hidden;
  background: #0b0b0b; /* prevents white flash while loading */
}

.aboutCard--video .videoFrame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional: if your aboutCard media area has fixed sizing,
   this helps the iframe behave nicely */
.aboutCard__media--video {
  display: flex;
  align-items: stretch;
}

/* Footer card */
.siteFooter {
  padding: 64px 0 40px;
}

.footerCard--full {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.06);
}

/* Image */
.footerCard__media {
  border-radius: 22px;
  overflow: hidden;
}

.footerCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.footerCard__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footerCard__text {
  max-width: 52ch;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social grid */
.footerSocialGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.socialCard {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.socialCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Footer copy */
.footerCard__copy {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 768px) {
  .footerCard--full {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footerCard__media {
    max-width: 220px;
    margin: 0 auto;
  }

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

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 860px){
  .aboutCard{
    grid-template-columns: 1fr;
  }
  .aboutCard__media{
    max-height: 280px;
  }
}

/* =========================
   ABOUT PAGE – LAYOUT
========================= */

/* Hero card */
.aboutHeroCard {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.06);
}

.aboutHeroCard__media {
  border-radius: 24px;
  overflow: hidden;
}

.aboutHeroCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aboutHeroCard__sub {
  margin-top: 8px;
  max-width: 60ch;
  opacity: 0.8;
  line-height: 1.55;
}

.aboutHeroCard__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   STORY CARD
========================= */

.aboutStoryCard {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.06);
}

.aboutProseWrap {
  max-width: 75ch;
  margin-top: 14px;
}

/* Typography */
.aboutProse__lead {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.aboutProse {
  font-size: 0.98rem;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 14px;
}

.aboutProse strong {
  font-weight: 600;
}

.aboutProse em {
  font-style: italic;
}

.aboutProse__closing {
  margin-top: 20px;
  font-weight: 600;
  opacity: 0.95;
}

/* =========================
   HIGHLIGHTS GRID
========================= */

.aboutHighlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.miniCard {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.05);
}

.miniCard__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.65;
  margin-bottom: 6px;
}

.miniCard__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.miniCard__text {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* =========================
   CTA CARD
========================= */

.aboutCtaCard {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.aboutCtaCard__title {
  margin-bottom: 8px;
}

.aboutCtaCard__text {
  max-width: 60ch;
  margin: 0 auto 18px;
  opacity: 0.85;
}

.aboutCtaCard__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .aboutHighlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .aboutHeroCard {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .aboutHeroCard__media {
    max-width: 260px;
    margin: 0 auto;
  }

  .aboutHeroCard__actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .aboutStoryCard,
  .aboutHeroCard,
  .aboutCtaCard {
    padding: 24px;
  }

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

/* =========================================================
   FIX: HAMBURGER MENU LAYERING (ONLY)
   - Keeps your exact design
   - Ensures mobile nav dropdown sits ABOVE hero text
========================================================= */
.header{
  position: relative;
  z-index: 9999;
}

.header__inner{
  position: relative;
  z-index: 10000;
}

@media (max-width: 720px){
  .nav{
    z-index: 10001;
  }
}

.latestMusicCard{
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding:22px 22px;
  border-radius:22px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  overflow:hidden;
}

.latestMusicCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(700px 260px at 15% 0%, rgba(255,255,255,.9), transparent 60%),
              radial-gradient(700px 260px at 85% 100%, rgba(255,255,255,.7), transparent 55%);
  pointer-events:none;
}

.latestMusicCard__content{
  position:relative;
  z-index:1;
  max-width: 640px;
}

.latestMusicCard__eyebrow{
  margin:0 0 8px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.75;
}

.latestMusicCard__title{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.15;
}

.latestMusicCard__text{
  margin:0 0 16px;
  opacity:.8;
  max-width: 55ch;
}

.latestMusicCard__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.latestMusicCard__aside{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width: 160px;
}

.latestMusicCard__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 14px;
  border-radius:999px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
  font-weight:600;
  opacity:.9;
}

@media (max-width: 820px){
  .latestMusicCard{
    flex-direction:column;
    align-items:flex-start;
  }
  .latestMusicCard__aside{
    min-width:auto;
    width:100%;
    justify-content:flex-start;
  }
}

.contactCard {
  max-width: 900px;              /* wider */
  margin: 0 auto;
  padding: 64px 72px;            /* more breathing room */
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.contactText {
  font-size: 1.1rem;             /* larger body text */
  line-height: 1.6;
  color: rgba(0,0,0,0.7);
  margin-bottom: 28px;
}

.contactLinks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contactLink {
  font-size: 1.25rem;            /* BIGGER + confident */
  font-weight: 700;
  color: #c9a24d;                /* your gold */
  text-decoration: none;
}

.contactLink:hover {
  text-decoration: underline;
}

/* Mobile tuning */
@media (max-width: 640px) {
  .contactCard {
    padding: 32px 24px;
  }

  .contactLink {
    font-size: 1.15rem;
  }
}

