:root{
  --bg:#000;
  --text:#fff;
  --muted:#b7b7b7;
  --line: rgba(255,255,255,0.12);
  --tile: rgba(255,255,255,0.06);
  --tileHover: rgba(255,255,255,0.10);
}

*{box-sizing:border-box}
html, body { height: 100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}

a{color:inherit; text-decoration:none}
.wrap{max-width:1040px; margin:0 auto; padding:32px 18px}

/* NAV */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0 18px;
}
.logo{font-weight:800; letter-spacing:.4px}
.links{display:flex; gap:14px; align-items:center}
.links a{opacity:.9}
.links a:hover{opacity:1}

/* TYPE */
.kicker{color:var(--muted); margin:0 0 10px; letter-spacing:.2px}
h1{font-size:56px; margin:0 0 10px; line-height:1.02}
.sub{margin:0 0 16px; color:var(--muted); max-width:60ch}
.muted{color:var(--muted)}
.dot{opacity:.55}

/* BUTTONS */
.btn, .ghost, .tile, .row{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  backdrop-filter: blur(6px);
}

.btn{
  background:#fff;
  color:#000;
  border-color: transparent;
  font-weight:700;
}
.ghost{
  background: rgba(255,255,255,0.05);
}
.btn:hover, .ghost:hover, .tile:hover, .row:hover{
  transform: translateY(-1px);
}

/* HERO: FULL-BLEED, NO BOX/BORDER */
.heroBanner{
  /* full width across the viewport even though it's inside .wrap */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* remove boxed look */
  border: none;
  border-radius: 0;
  overflow: hidden;

  /* image */
  background-image: url("headshot.jpeg");
  background-size: cover;
  background-repeat: no-repeat;

  /* adjust framing here if needed */
  background-position: 75% 35%;

  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: flex-end;
}

/* overlay for legibility without "card" */
.heroBanner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.72) 42%,
      rgba(0,0,0,0.22) 72%,
      rgba(0,0,0,0.00) 100%),
    radial-gradient(900px 600px at 10% 20%,
      rgba(255,255,255,0.06) 0%,
      rgba(0,0,0,0.00) 60%);
  pointer-events:none;
}

.heroInner{
  position: relative;
  z-index: 1;

  /* keep your hero text nicely aligned with the site content width */
  max-width: 1040px;
  margin: 0 auto;

  padding: 44px 18px 46px;
  width: 100%;
}

.cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}

.miniLinks{
  margin-top:14px;
  color:var(--muted);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.miniLinks a{
  opacity:.95;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.miniLinks a:hover{opacity:1}

/* MAIN SECTIONS: stop looking like boxes */
main.wrap{
  padding-top: 26px;
}

.card{
  /* turn cards into clean sections */
  background: transparent;
  border: none;
  border-radius: 0;

  margin: 0;
  padding: 22px 0;

  /* subtle divider line instead of a box */
  border-top: 1px solid var(--line);
}

/* LYRICS INDEX: make lists look like tappable rows */
main.wrap ul{
  list-style: none;
  padding: 0;
  margin: 12px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main.wrap ul li{ margin: 0; }
main.wrap ul li a{
  display: flex;
  align-items: center;
  gap: 10px;

  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;

  background: var(--tile);
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
main.wrap ul li a:hover{
  background: var(--tileHover);
  transform: translateY(-1px);
}
main.wrap ul li a:active{ transform: translateY(0px); }
main.wrap ul li a:focus-visible{
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 2px;
}

/* SONG PAGE: modern lyric typography (override <pre> defaults) */
pre.lyrics{
  white-space: pre-wrap;
  margin: 0;
  padding: 6px 0 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* SONG PAGE: pull lyrics up slightly closer to the subtitle */
#lyrics.lyrics{
  margin-top: -10px;
  padding-top: 0;
}

/* optional: remove the very first divider if you want */
.card:first-child{
  border-top: 1px solid var(--line);
}

.card h2{margin:0 0 10px; font-size:22px}
.card h3{margin:18px 0 10px; color:var(--muted); font-weight:600}

/* LISTEN GRID */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.tile{
  background: var(--tile);
}
.tile:hover{
  background: var(--tileHover);
}

/* WATCH ROW */
.row{
  justify-content:flex-start;
  background: var(--tile);
}
.row:hover{
  background: var(--tileHover);
}

/* EMBED spacing */
.embed{margin-top:14px}

/* CONTACT */
.contactLine { margin: 0 0 12px; color: var(--muted); }
.emailLink { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* SOCIAL GRID */
.social{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
  margin-top:12px;
}

/* FOOTER */
.footer{
  display:flex; gap:12px; flex-wrap:wrap;
  align-items:center; justify-content:center;
  padding:30px 0 10px;
  color:var(--muted);

  border-top: 1px solid var(--line);
  margin-top: 22px;
}

/* RESPONSIVE */
@media (max-width:860px){
  h1{font-size:44px}
  .grid{grid-template-columns: 1fr}
  .heroBanner{
    min-height: 72vh;
  }
}
@media (max-width: 640px){
  h1{font-size:38px}
  .social{grid-template-columns: 1fr}
  .heroBanner{
    min-height: 58vh;          /* was 68vh */
    background-position: 55% 6%; /* much higher */
  }
}
@media (hover: none) and (pointer: coarse){
  .heroBanner{
    background-position: 55% -80px !important;
  }
}
/* SONG PAGE: tighten gap above lyrics */
body.song .card{
  padding-top: 8px !important;
}

body.song .sub{
  margin-bottom: 8px !important;
}

/* if you have an <hr> or divider element above the lyrics */
body.song .card hr,
body.song .divider{
  margin: 10px 0 12px !important;
}