/* Wild Geese — Meadow. This file is a COPY of the artist site's stylesheet,
   taken when the signup page moved domains, so it carries its own :root and
   was silently left behind by the site-wide rebrand: every other page read
   shell.css, this one did not. The public front door was the last page still
   wearing the old palette.

   --muted was #777f88 and measured 3.99:1 at the 12-13px this page uses for
   hints and "(optional)" — under the bar before the rebrand and after it.
   Every value below is checked on the page ground AND on the white card:
   text 13.43/14.78 · muted 5.54/6.10 · primary 6.81/7.49 · white-on-primary
   7.49. Re-run those if you touch one. */
  :root {
    --bg: #F7F4E9;
    --surface: #ffffff;
    --primary: #2F5D50;
    --primary-light: #4A7D6D;
    --on-primary: #ffffff;
    --outline: rgba(47, 93, 80, 0.2);
    --text: #1C2B24;
    --muted: #55665C;
    --radius: 12px;
    --gap: 18px;
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --blue: #2F5F92;
    --yellow: #8A6224;
    --cream: #F7F4E9;
    --red: #7A2E30;
    --green: #2F5D50;
    --brown: #8A6224;
  }

  * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  html, body {
    background: #F7F4E9;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  }

  /* === Layout === */
  body {
    border: none;
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    border-radius: 24px;
    overflow-x: hidden;
    max-width: 430px;
    margin: 0 auto;
    background: none;
    min-height: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .container {
    max-width: 430px;
    margin: auto;
    padding: var(--gap);
    padding-top: var(--gap);
    background: #FAF5EC;
  }

  /* === Hero Section === */
  .hero {
    text-align: center;
    margin-bottom: var(--gap);
    margin-top: calc(-1 * var(--gap));
  }
  .artist-pic {
    width: calc(100% + 2 * var(--gap));
    margin-left: calc(-1 * var(--gap));
    margin-right: calc(-1 * var(--gap));
    margin-top: 0;
    display: block;
    object-fit: cover;
    height: auto;
    border-radius: 24px 24px 0 0;
    background: var(--surface);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    margin-bottom: 20px;
  }

  h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--blue), var(--brown));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: "Times New Roman", Times, serif;
  }
  h2, h3, .subtitle {
    font-family: "Times New Roman", Times, serif;
  }
  /* Weights: h2 extra-bold, h3 semi-bold, subtitle medium */
  h2 { font-weight: 800; }
  h3 { font-weight: 600; }
  .subtitle { font-weight: 500; }

  p {
    margin: 12px 0 0;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* === Form === */
  .form {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--gap);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .form-group {
    margin-bottom: var(--gap);
  }

  .form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: var(--blue);
    font-weight: 500;
  }

  input,
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(84, 94, 104, 0.1);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color var(--transition);
    background: rgba(255, 255, 255, 0.7);
  }

  input:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--outline);
  }

  input::placeholder,
  textarea::placeholder {
    text-align: left;
    color: var(--muted);
    opacity: 0.6;
  }

  /* === Buttons === */
  .btn {
    width: 100%;
    padding: 0;
    font-size: 1rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: left;
    overflow: hidden;
    min-height: 60px;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
  }

  /* Section spacing utility */
  .section-spacing { margin-top: calc(var(--gap) * 1.5); margin-bottom: calc(var(--gap) * 1.5); }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(84, 94, 104, 0.1);
  }

  .btn:active {
    transform: translateY(0);
  }

  .btn-primary {
    background: linear-gradient(to bottom, var(--green), #24483E);
    color: var(--on-primary);
    padding: 0;
    box-shadow: 0 2px 8px rgba(96, 108, 89, 0.3);
    justify-content: center;
    text-align: center;
    font-weight: 600;
  }

  .btn-primary:hover {
    background: linear-gradient(to bottom, #6b7a64, #5e6a56);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 108, 89, 0.4);
  }

  .btn-primary .btn-icon {
    filter: brightness(0) invert(1);
    margin-left: 8px;
  }

  .btn-outline {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    border: 1px solid rgba(84, 94, 104, 0.1);
    box-shadow: 0 2px 10px rgba(84, 94, 104, 0.05);
    justify-content: center;
    font-weight: 600;
  }

  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    box-shadow: 0 5px 15px rgba(84, 94, 104, 0.15);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
  }

  /* === Form Notes & Consent === */
  .form-note {
    text-align: center;
    margin: 8px 0 0 0;
    font-size: 0.97rem;
    color: var(--muted);
  }

  .form-note.consent-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 0 0;
    font-size: 1rem;
    color: var(--text);
  }

  .form-note.consent-group input[type="checkbox"] {
    accent-color: var(--green);
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
  }

  .form-note.consent-group label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    margin: 0;
    cursor: pointer;
  }

  /* === Actions === */
  .actions {
    display: flex;
    flex-direction: column !important;
    gap: var(--gap);
    margin-bottom: var(--gap);
  }

  .actions .btn {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: 600;
    text-decoration: none;
  }

  .btn-patreon {
    background: linear-gradient(to bottom, var(--red), #753435);
    color: var(--on-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(133, 61, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
  }

  .btn-patreon:hover {
    background: linear-gradient(to bottom, #954546, #853d3e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(133, 61, 62, 0.4);
    color: var(--on-primary);
  }

  .btn-icon {
    width: 22px;
    height: 22px;
    margin-left: 6px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .btn-presave {
    background: linear-gradient(to bottom, var(--yellow), var(--brown)) !important;
    color: var(--on-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(159, 122, 78, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
  }

  .btn-presave:hover {
    background: linear-gradient(to bottom, #b08a59, #b27b50) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(159, 122, 78, 0.4);
    color: var(--on-primary) !important;
  }

  .btn-presave .btn-icon {
    width: 22px;
    height: 22px;
    margin-left: 4px;
    filter: brightness(0) invert(1);
  }

  /* Green CTA for Latest Release */
  .btn-green {
    background: linear-gradient(to bottom, var(--green), #546049) !important;
    color: var(--on-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(96, 108, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
  }

  .btn-green:hover {
    background: linear-gradient(to bottom, #6b7a64, #5e6a56) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 108, 89, 0.4);
    color: var(--on-primary) !important;
  }

  /* --- Support Modal & Grid (shared styles) --- */
  .modal.hidden { display: none !important; }
  .modal { 
    position: fixed; 
    inset: 0; 
    z-index: 9999; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    scroll-behavior: smooth;
  }
  .modal-backdrop { 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,.6); 
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .modal-content { 
    position: relative; 
    width: min(380px, calc(100% - 32px)); 
    background: var(--surface); 
    border-radius: var(--radius); 
    padding: 24px 20px 20px; 
    box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 8px 16px rgba(0,0,0,.15);
    transform: scale(0.95);
    transition: transform 0.2s ease-out;
    margin: 0 auto;
  }
  .modal:not(.hidden) .modal-content {
    transform: scale(1);
  }
  .modal-close { 
    width: 100%; 
    margin-top: 16px; 
    border: 1px solid rgba(84,94,104,.25); 
    background: rgba(255,255,255,.9); 
    color: var(--text); 
    padding: 12px 16px; 
    border-radius: var(--radius); 
    cursor: pointer; 
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .modal-close:hover {
    background: rgba(255,255,255,1);
    border-color: rgba(84,94,104,.4);
  }
  .support-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 16px; 
    margin-bottom: 8px;
    justify-items: center;
  }

  @media (max-width: 480px) {
    .support-grid {
      gap: 12px;
      padding: 0 4px;
    }
    .modal-content {
      width: min(380px, calc(100% - 24px));
      padding: 20px 16px 16px;
    }
  }
  .support-tile { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    aspect-ratio: 1/1; 
    min-height: 64px;
    border-radius: 12px; 
    cursor: pointer; 
    text-decoration: none; 
    border: 1px solid rgba(84,94,104,.15);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
  }
  .support-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
  }
  .support-icon { 
    width: 32px; 
    height: 32px; 
    filter: brightness(0) invert(1); 
    transition: transform 0.2s ease;
  }
  .support-tile:hover .support-icon {
    transform: scale(1.1);
  }
  .tile-blue { background: linear-gradient(to bottom, var(--blue), #475058); }
  .tile-red { background: linear-gradient(to bottom, var(--red), #753435); }
  .tile-green { background: linear-gradient(to bottom, var(--green), #24483E); }
  .tile-yellow { background: linear-gradient(to bottom, var(--yellow), #b27b50); }
  .tile-brown { background: linear-gradient(to bottom, var(--brown), #7f5533); }
  .tile-cream { background: linear-gradient(to bottom, var(--cream), #f2e9dc); color:#222; }

  /* === Setlist === */
  .setlist {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--gap);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    margin-top: var(--gap);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  #setlist-container {
    margin-top: var(--gap);
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .loading {
    text-align: center;
    color: var(--muted);
    margin-bottom: var(--gap);
  }

  .setlist h2 {
    margin: 0 0 var(--gap) 0;
    font-size: 1.4rem;
    text-align: center;
    background: linear-gradient(to right, var(--blue), var(--brown));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif;
    letter-spacing: 0.3px;
  }

  .setlist h3 {
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: var(--gap) 0 calc(var(--gap) * 0.75) 0;
  }

  #setlist {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Times New Roman", Times, serif;
  }

  #setlist li {
    cursor: pointer;
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.4;
    border-radius: 4px;
    margin-bottom: 6px;
    transition: background var(--transition), color var(--transition);
  }

  .setlist li:hover {
    background: rgba(0,0,0,0.05);
  }

  .setlist li.active {
    background: linear-gradient(to bottom, var(--green), #24483E);
    color: var(--on-primary);
  }

  /* Ensure yellow-themed active songs render with white text as requested */
  .setlist li.active.yellow, .setlist li.active[data-color="yellow"] {
    color: #fff !important;
  }

  .lyrics {
    margin: 4px 0 var(--gap);
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    white-space: pre-line;
    font-style: normal;
    line-height: 1.7;
    font-size: 1.04em;
    margin-bottom: 1.5em;
    color: var(--text);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .lyrics p {
    margin: 0 0 1em 0;
    white-space: pre-line;
  }

  /* === Social & Music Links === */
  .music-links,
  .social-icons {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    margin-top: var(--gap);
  }

  .music-links img,
  .social-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
    transition: transform 0.2s, filter 0.2s;
  }

  .music-links img:hover,
  .social-icons img:hover {
    transform: scale(1.08);
    filter: brightness(1.15) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
  }

  .playlist-actions {
    display: flex;
    gap: var(--gap);
    justify-content: center;
    margin-top: var(--gap);
  }

  .playlist-actions .btn {
    height: 50px;
    width: 50px;
    padding: 0 var(--gap);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .playlist-actions .btn-icon {
    filter: none !important;
    margin: 0;
    width: 32px;
    height: 32px;
  }

  /* === Footer === */
  .footer {
    text-align: center;
    margin-top: var(--gap * 2);
  }

  .hidden {
    display: none !important;
  }

  /* === Post Signup === */
  .post-signup {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--gap);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    margin-top: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .post-signup .actions {
    gap: var(--gap);
    margin-bottom: var(--gap);
  }
  /* Make "You're on the list!" yellow */
  .post-signup .on-list-message {
    color: var(--yellow);
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
  font-family: "Times New Roman", Times, serif;
  }
  .post-signup h2 { font-family: "Times New Roman", Times, serif; }

  /* === Feedback Form === */
  .feedback-form {
    margin-top: var(--gap);
    background: var(--surface);
    border-radius: var (--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: var(--gap);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .feedback-label {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
    text-align: center;
  }

  .feedback-form textarea {
    resize: vertical;
    min-height: 60px;
    font-size: 1rem;
    border-radius: var(--radius);
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    background: #fafbfc;
    color: var(--text);
    transition: border-color var(--transition);
  }

  .feedback-form textarea:focus {
    border-color: var(--primary);
    outline: none;
  }

  .feedback-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  font-weight: 600; /* match other buttons */
  background: linear-gradient(to bottom, var(--green), #24483E);
    color: var(--on-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(84, 94, 104, 0.3);
  font-family: Arial, Helvetica, sans-serif; /* match .btn font */
  }

  .feedback-btn:hover {
    background: linear-gradient(to bottom, #6b7a64, #5e6a56);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(84, 94, 104, 0.4);
    color: var(--on-primary);
  }

  .feedback-btn .btn-icon {
    filter: brightness(0) invert(1);
  }

  .feedback-form,
  .feedback-form label,
  .feedback-form textarea {
    font-family: inherit;
    color: var(--text);
  }

  .required {
    color: #ff3b30;
    margin-left: -2px;
  }

  /* === Background Blur === */
  .background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at top right, rgba(159, 122, 78, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
  }

  /* === Artists Section === */
  .artists-section {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--gap);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    margin-top: var(--gap);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .artists-section h3 {
    margin: 0 0 var(--gap) 0;
    font-size: 1.2rem;
    text-align: center;
    background: linear-gradient(to right, var(--blue), var(--brown));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
  }

  .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--gap);
    justify-items: center;
  }

  .artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .artist-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(84, 94, 104, 0.15);
    transition: transform var(--transition);
  }

  .artist-thumb:hover {
    transform: scale(1.05);
  }

  .artist-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
  }

  .artist-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(84, 94, 104, 0.1);
  }

  .artist-instagram:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(84, 94, 104, 0.2);
  }

  .instagram-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  /* === Setlist Button === */
  #show-setlist {
    background: linear-gradient(to bottom, var(--blue), #475058) !important;
    color: var(--on-primary) !important;
    border: none;
    box-shadow: 0 2px 8px rgba(84, 94, 104, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  #show-setlist:hover {
    background: linear-gradient(to bottom, #606a74, #535d67) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(84, 94, 104, 0.4);
    color: var(--on-primary) !important;
  }

  .emoji-white {
    filter: brightness(0) invert(1);
    display: inline-block;
  }

  /* === Mobile Optimization === */
  @media (max-width: 600px) {
    html, body {
      font-size: 15px;
      width: 100vw;
      max-width: 100vw;
      overflow-x: hidden;
      /* Prevent unwanted zoom on iOS input focus */
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      /* Prevent tap highlight on Android */
      -webkit-tap-highlight-color: transparent;
      /* Prevent double-tap zoom */
      touch-action: manipulation;
    }
    body {
      border-radius: 24px;
      max-width: 430px;
      min-height: 100dvh;
      margin: 0 auto;
      box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
      padding: 0;
      background: none;
      /* Add extra space at the bottom and color it #FAF5EC */
      padding-bottom: 56px;
      position: relative;
    }
    body::after {
      content: "";
      display: block;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      height: 56px;
      background: #FAF5EC;
      z-index: 1;
      pointer-events: none;
    }
    .container {
      max-width: 430px;
      width: 100%;
      padding: var(--gap);
      padding-top: var(--gap);
      margin: 0 auto;
      box-sizing: border-box;
      background: #FAF5EC;
      position: relative;
      z-index: 2;
    }
    .hero {
      margin-bottom: var(--gap);
      margin-top: calc(-1 * var(--gap));
    }
    .artist-pic {
      width: calc(100% + 2 * var(--gap));
      max-width: unset;
      margin-left: calc(-1 * var(--gap));
      margin-right: calc(-1 * var(--gap));
      border-radius: 24px 24px 0 0;
      margin-bottom: 20px;
    }
    .form,
    .post-signup,
    .artists-section,
    .setlist {
      border-radius: var(--radius);
      padding: var(--gap);
      box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
      /* Prevent background bleed on Android/Safari */
      background-clip: padding-box;
    }
    .form-group {
      margin-bottom: var(--gap);
    }
    .btn,
    .btn-primary,
    .btn-outline,
    .btn-patreon,
    .btn-presave {
      min-height: 60px;
      font-size: 1rem;
      padding: 0;
      /* Improve tap target for mobile */
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }
    .btn-icon {
      width: 22px;
      height: 22px;
      margin-left: 6px;
    }
    .feedback-form {
      padding: var(--gap);
    }
    .setlist li {
      padding: 12px;
      font-size: 1em;
    }
    .lyrics {
      padding: 12px;
      font-size: 1.04em;
    }
    .artists-grid {
      gap: var(--gap);
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      justify-items: center;
    }
    .artist-card {
      max-width: 100px;
      width: 100%;
    }
    .artist-thumb {
      width: 80px;
      height: 80px;
    }
    .artist-name {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 4px;
    }
    .footer {
      margin-top: calc(var(--gap) * 2);
    }
    .music-links img,
    .social-icons img {
      width: 40px;
      height: 40px;
    }
    .playlist-actions .btn {
      height: 50px;
      width: 50px;
      padding: 0 var(--gap);
    }
    .playlist-actions .btn-icon {
      width: 32px;
      height: 32px;
    }
    /* Make consent label fit in one line, shrink font if needed */
    .form-note.consent-group label {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%;
      display: block;
      font-size: 0.85rem;
      letter-spacing: -0.01em;
    }
  }

/* === Appended homepage sections (bio/releases/connect) on the show page === */
/* Ported from home.css — scoped to home-* classes/IDs so nothing here touches
   show.html's own elements (buttons, .actions, etc.). */
#home-bio-content {
  text-align: left;
  line-height: 1.75;
  font-size: 1.1rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  margin: 0 auto;
  max-width: 650px;
  color: var(--text);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(84, 94, 104, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(84, 94, 104, 0.04);
}

#home-connect-actions.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

#home-connect-actions .btn {
  width: 80%;
}

.btn-red {
  background: linear-gradient(to bottom, var(--red), #753435);
  color: var(--on-primary);
  border: none;
  box-shadow: 0 2px 8px rgba(133, 61, 62, 0.3);
}

.btn-red:hover {
  background: linear-gradient(to bottom, #954546, #853d3e);
  color: var(--on-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(133, 61, 62, 0.4);
}

.btn-red .btn-icon {
  filter: brightness(0) invert(1);
}
/* ══════════════════════════════════════════════════════
   Dark mode (added 2026-09-07)

   This is the public front door, and it was the only page still rendering
   cream while its own theme-color told the browser chrome to go dark navy.
   On a dark-mode phone that reads as a page that hasn't been finished.

   Tokens flip; the accent colours are lifted rather than inverted, because a
   colour dark enough to carry white text as a BUTTON FILL is not readable as
   text on a dark field. Where both roles exist the fill keeps its weight and
   the surrounding surface moves instead. Contrast on every pairing below was
   computed with the WCAG formula, not eyeballed.
   ══════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark){
  /* Meadow, dark. Was still the old blue-grey (#12181d) after the rebrand,
     which is why <html> and <body> disagreed on the ground colour.

     --blue is the one that mattered: the form labels use it, and this block
     never redefined it, so every label rendered #2F5F92 on near-black at
     2.4:1 — the whole form unreadable in dark mode with nothing visibly
     broken. If you add a token above, add it here too. */
  :root{
    --bg:#121815;
    --surface:#1A221E;
    --primary:#E7EFE9;
    --primary-light:#C6D6CC;
    --on-primary:#0C1310;
    --outline:rgba(190,212,200,.22);
    --text:#E7EFE9;
    --muted:#A2B3A8;
    --blue:#95BEE8;
    --green:#8FCBB6;
    --yellow:#D9AE6B;
    --red:#E39B9C;
    --brown:#D9AE6B;
    --cream:#121815;
  }
  body, .container, body::after{ background:#121815 }
  .container{ box-shadow:0 2px 6px rgba(0,0,0,.4), 0 12px 28px rgba(0,0,0,.32) }

  /* cards and wells */
  .tile-cream{ background:#212B26; color:#E7EFE9 }
  .feedback-form textarea, input, textarea, select{
    background:#1A221E; color:#E7EFE9; border-color:rgba(190,212,200,.24) }
  ::placeholder{ color:#8C9C92 }

  /* role pills and buttons — lifted, not inverted */
  .tile-blue,  #show-setlist            { background:#38424c; color:#f2f6f9 }
  #show-setlist:hover                   { background:#48535e }
  .btn-primary, .btn-green, .tile-green,
  .setlist li.active, .feedback-btn     { background:#748769; color:#0d1418 }
  .btn-patreon, .tile-red, .btn-red     { background:#b8686a; color:#0d1418 }
  .btn-presave                          { background:#c79a68; color:#0d1418 }

  hr, .divider{ border-color:rgba(200,212,220,.18) }
  a{ color:#9dc6e6 }

  /* Every card on this page is a semi-transparent WHITE wash. On a dark
     field those turn into washed-out grey slabs with dark text — worse than
     no dark mode at all. They have to become solid dark surfaces, not
     translucent light ones. Found by measuring computed background luminance
     on every element, not by looking. */
  .form, .setlist, .post-signup, .artists-section,
  .wg-explainer, .lyrics, .artist-instagram,
  .btn-outline, .btn-secondary{
    background:#1b232a; color:#e8eef2; border-color:rgba(200,212,220,.22);
  }
  .btn-outline:hover, .btn-secondary:hover, .artist-instagram:hover{ background:#232d35 }
  .modal-close{ background:rgba(27,35,42,.92); color:#e8eef2 }
  .modal-close:hover{ background:#1b232a }
  input, textarea{ background:#161d23; color:#e8eef2; border-color:rgba(200,212,220,.24) }

  /* The form carried an explicit dark colour, so its heading was black on a
     dark card. Anything inside it inherits properly now. */
  .form, .form *, .post-signup, .post-signup *{ color:inherit }
  .form h2, .form h3, .wg-question{ color:#e8eef2 }
  .form .hint, .wg-hint, .wg-needed{ color:#a3b1bb }

  /* Role pills: 10%-alpha accent on cream reads as a soft tint; on a dark
     field it disappears. Lift both the tint and the label. */
  .wg-option{ background:#222b33; color:#dfe7ec; border-color:rgba(200,212,220,.26) }
  .wg-option.wg-c1{ color:#a3bd98 } .wg-option.wg-c2{ color:#d3a978 }
  .wg-option.wg-c3{ color:#e08f90 } .wg-option.wg-c4{ color:#9dc6e6 }
  .wg-option.wg-c5{ color:#d0a882 }
  .wg-option[aria-pressed="true"], .wg-option.selected, .wg-option.is-on{
    background:#33404a; border-color:rgba(200,212,220,.5); color:#f2f6f9 }
}


/* ══════════════════════════════════════════════════════════
   BRAND LAYER — Wild Geese, applied 2026-09-08.
   This file was copied from brotherjames.show and kept its look when the page
   moved. Everything above is that inheritance; everything below is the Meadow
   brand (shell.css) restated for this page, last so it wins. Baskerville
   headings, Inter everywhere else, flat accent buttons, the 3.5% trellis,
   no gradients and no glass. If shell.css changes, change this.
   ══════════════════════════════════════════════════════════ */
:root{
  --serif:'Libre Baskerville',ui-serif,Georgia,serif;
  --sans:'Inter',ui-sans-serif,system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  --outline:rgba(47,93,80,.18); --outline-strong:rgba(47,93,80,.38);
  --shadow-1:0 1px 2px rgba(34,48,58,.06),0 2px 8px rgba(34,48,58,.04);
}
html{
  background-color:#F7F4E9;
  background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2272%22%20height%3D%2272%22%20viewBox%3D%220%200%2072%2072%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%232F5D50%22%20stroke-width%3D%221%22%20opacity%3D%220.035%22%3E%3Cpath%20d%3D%22M0%2036%20L36%200%20L72%2036%20L36%2072%20Z%22%2F%3E%3Cpath%20d%3D%22M36%200%20V72%22%2F%3E%3Cpath%20d%3D%22M0%2036%20H72%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat:repeat;
}
body{background:none;backdrop-filter:none;-webkit-backdrop-filter:none;
  box-shadow:var(--shadow-1);border:1px solid var(--outline);font-family:var(--sans)}
.container{background:var(--surface)}
h1,h2,h3,.subtitle{font-family:var(--serif)}
h1{background:none;-webkit-background-clip:unset;background-clip:unset;color:var(--primary);
   font-weight:700;letter-spacing:-.01em;line-height:1.15}
h2{font-weight:700} h3{font-weight:700}
.form{background:var(--surface);backdrop-filter:none;-webkit-backdrop-filter:none;
  border:1px solid var(--outline);box-shadow:var(--shadow-1)}
.form-group label{font-family:var(--sans);color:var(--text)}
.btn{transition:background-color var(--transition),color var(--transition)}
.btn:hover,.btn:active,.btn-primary:hover,.btn-patreon:hover{transform:none;box-shadow:none}
.btn-primary{background:var(--primary);box-shadow:none}
.btn-primary:hover{background:#1F4438}
.btn-outline,.btn-secondary{background:var(--surface);border:1px solid var(--outline-strong);color:var(--primary);box-shadow:none}
.btn-outline:hover{background:#EFEDDF;color:var(--primary);box-shadow:none}
.btn-patreon{background:var(--red);box-shadow:none}
.btn-patreon:hover{background:#63262A}
input,textarea,select{font-family:var(--sans)}
