    :root{
      --bg-top: #c44918;        /* warm sunset */
      --bg-mid: #7a2b15;        /* deeper orange */
      --bg-bottom: #0b0b0b;     /* near-black */
      --ink: #f4d28a;           /* gold text */
      --ink-dim: #e3c676;       /* dimmer gold */
      --ink-soft: #c9b16b;      /* even softer */
      --ink-muted: #a58b4f;
      --line: rgba(244,210,138,.15);
      --panel: rgba(0,0,0,.45);
      --panel-strong: rgba(0,0,0,.55);
      --glow: rgba(244,210,138,.6);
      --container: 980px;
      --radius: 8px;
      --shadow: 0 1px 0 rgba(255,255,255,.07) inset, 0 8px 24px rgba(0,0,0,.5);
    }

    /* Page background (swap the image URL below for your skyline) */
    body{
      margin:0;
      color:var(--ink);
      background:
        linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.6)),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 35%, var(--bg-bottom) 72%),
        url('images/afd-bg.jpg') center top / cover no-repeat fixed; /* <-- replace with your bg */
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol";
      line-height:1.65;
    }

.wrap {
  max-width: var(--container); /* same as 980px */
  margin: 0 auto;
  padding: 40px 0 60px; /* no left/right padding */
}

    /* Header */
    .masthead{
      display:grid;
      grid-template-columns: 160px 1fr;
      gap: 28px;
      align-items:end;
      margin-top: 10px;
    }


    .titleblock{
      padding-bottom: 6px;
    }

    h1{
      margin:0 0 8px;
      font-family: Cinzel, serif;
      font-weight: 700;
      letter-spacing: .02em;
      font-size: clamp(40px, 8vw, 92px);
      line-height: .9;
      text-transform: uppercase;
      text-shadow: 0 2px 0 rgba(0,0,0,.6), 0 8px 24px rgba(0,0,0,.4);
    }

.header {
  display: block;
  width: 100%;
  max-width: 980px;
  height: 400px;
  margin: 0 auto;
  background: url('albumheader.png') center top no-repeat;
  background-size: cover;
  border-radius: var(--radius);
  overflow: hidden;     /* keeps image and fade inside the curve */
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /* longer, softer fade */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #0b0b0b 100%);
  border-radius: 0 0 var(--radius) var(--radius);
}


    .tagline{
      font-family: "Crimson Text", serif;
      font-size: clamp(16px, 2.2vw, 24px);
      color: var(--ink-dim);
    }
    .tagline em{ font-style: italic; color: var(--ink); }

    /* Nav bar */
.navwrap {
  margin-top: 32px;
background: rgba(0,0,0,0.55); /* slightly lighter */
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  position: relative;
  z-index: 5; /* bump above everything nearby */
}

nav {
  display: flex;
  flex-wrap: wrap; /* allow wrapping if needed */
  justify-content: center;
  align-items: center;
  padding: 14px 10px;
  gap: 20px;
  font-variant: small-caps;
  letter-spacing: .12em;
  user-select: none;
  text-align: center; /* safety net for older browsers */
  width: 100%; /* ensures it spans full width of parent */
  box-sizing: border-box;
}

    nav a{
      text-decoration:none;
      color: var(--ink);
      font-weight:600;
      position:relative;
      padding: 6px 10px;
      transition: transform .15s ease, text-shadow .15s ease, color .15s ease;
    }
    /* dot separators */
    nav a + a::before{
      content:"·";
      position:absolute;
      left:-14px;
      top:50%;
      translate: 0 -50%;
      color: var(--ink-soft);
      opacity:.75;
    }

    nav a:hover, nav a:focus{
      transform: translateY(-1px);
      text-shadow: 0 0 16px var(--glow);
      outline:none;
    }

    /* Main panel */
    .panel{
      margin-top: 20px;
      background: var(--panel-strong);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 26px;
  position: relative;
  z-index: 1;
    }

/* new bit */
.navwrap {
  margin-bottom: 8px; /* small breathing room to reveal the curve */
  background: rgba(0,0,0,0.55); /* slightly lighter */
}
    .grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
    }

    h2{
      font-family: Cinzel, serif;
      font-weight:700;
      font-size: clamp(26px, 3vw, 34px);
      margin: 0 0 14px;
      color: var(--ink);
      text-shadow: 0 1px 0 rgba(0,0,0,.6);
    }

    .section{
      border-top: 1px solid var(--line);
      padding-top: 18px;
      margin-top: 18px;
    }
    .section:first-child{ border-top: 0; padding-top:0; margin-top:0; }

    .muted{ color: var(--ink-muted); }
    a{ color: var(--ink); text-decoration: underline dashed 1px; text-underline-offset: 2px; }
    a:hover{ text-decoration-style: solid; }

    /* Right column (stats) */
    .sidebar{
      border-left: 1px solid var(--line);
      padding-left: 24px;
    }
    .stats{
      margin-top: 10px;
      display:grid;
      grid-template-columns: 1fr auto;
      gap: 10px 16px;
      font-family: "Crimson Text", serif;
      font-size: 18px;
      color: var(--ink-dim);
    }
    .stats b{ color: var(--ink); font-weight: 700; font-family: Cinzel, serif; }

    .hr{
      height:1px;
      background: var(--line);
      margin: 22px 0;
    }

    .callout{
      margin-top: 18px;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: rgba(255,255,255,.02);
      box-shadow: inset 0 0 18px rgba(0,0,0,.2);
      color: var(--ink-dim);
    }

    /* Footer quote */
    footer{
      text-align:center;
      color: var(--ink-dim);
      margin: 26px auto 0;
      font-family: "Crimson Text", serif;
      font-size: clamp(16px, 2vw, 20px);
      letter-spacing:.02em;
      text-shadow: 0 1px 0 rgba(0,0,0,.6);
    }

    /* Small screens */
    @media (max-width: 880px){
      .masthead{
        grid-template-columns: 120px 1fr;
        gap: 18px;
      }
      .logo{ width: 120px; }
      .grid{ grid-template-columns: 1fr; }
      .sidebar{ border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
    }


/* --- BACKGROUND BLEED (simple version) --- */
.bleed-test body {
  background: #0b0b0b;
}

.bleed-test .header {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 500px;
  margin: 0 auto -100px; /* overlaps slightly behind nav */
  background: url('albumheader.png') center 25% / cover no-repeat;
  z-index: 1;
}

/* subtle fade overlay */
.bleed-test .header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #0b0b0b 100%);
}

/* make panels/nav slightly translucent to let glow show through */
.bleed-test .navwrap,
.bleed-test .panel {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(244,210,138,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
  border-radius: var(--radius);   /* ← add this line */
}

/* Consistent width for non-index pages */
.page-inner {
  max-width: var(--container);   /* same 980px width */
  margin: 20px auto 0;           /* space from nav, centered */
  padding: 26px;                 /* same inner spacing as .panel */
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  box-sizing: border-box;
  width: 100%;
}
.page-inner {
  display: block;
  width: calc(100% - 2px); /* accounts for the border */
}

