
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: #f4f3f2;
    font-family: Georgia, "Times New Roman", serif;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  nav {
    background: #fffffd;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 2.5rem;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }

  nav .logo {
    height: 32px;
    display: block;
  }

  nav ul { list-style: none; display: flex; gap: 2.5rem; margin: 0 auto; }
  nav ul li a {
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  nav ul li a:hover { opacity: 0.5; }

  .video-section {
    padding: 2.5rem 2rem;
    max-width: 860px;
    margin: 0 auto;
  }
  .video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
  }
  .video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }

  .section {
    padding: 2rem;
    max-width: 860px;
    margin: 0 auto 2rem;
  }

  .white-block {
    background: #fffffd;
    padding: 2.5rem;
    margin: 0 2rem 2rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #000000;
    text-align: center;
  }

  .tour-row {
    display: flex;
    justify-content: space-between; position: relative;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .tour-date { font-weight: bold; min-width: 110px; }
  .tour-venue { flex: 1; padding: 0 1rem; }
  .tour-city { opacity: 0.5; font-size: 11px; }

  .contact-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
  }
  .contact-group h3 {
    font-size: 9px;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    opacity: 0.5;
  }
  .contact-group p { font-size: 11px; line-height: 1.8; }
  .contact-group a { color: #000000; text-decoration: none; }
  .contact-group a:hover { opacity: 0.5; }

  footer {
    background: #f4f3f2;
    border-top: 1px solid rgba(0,0,0,0.12);
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between; position: relative;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  footer span { font-size: 9px; letter-spacing: 0.05em; opacity: 0.5; }
  .socials { display: flex; gap: 1.5rem; }
  .socials a {
    color: #000000;
    font-size: 9px;
    text-decoration: none;
    letter-spacing: 0.05em;
  }
  .socials a:hover { opacity: 0.5; }


  .album-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .album-art {
    width: 100%;
    display: block;
  }

  .album-title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
  }

  .album-artist {
    font-size: 11px;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 0.25rem;
  }

  .album-year {
    font-size: 11px;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 2rem;
  }

  .tracklist-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-bottom: 0.75rem;
  }

  ol.tracklist {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }

  ol.tracklist li {
    display: flex;
    gap: 1rem;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  ol.tracklist li .num {
    opacity: 0.3;
    min-width: 1.5rem;
  }

  .album-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .album-links a {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    display: inline-block;
  }

  .album-links a:hover { opacity: 0.5; }

  .back-link {
    display: block;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: #000;
    text-decoration: none;
    opacity: 0.5;
    margin-bottom: 3rem;
  }

  .back-link:hover { opacity: 1; }

  @media (max-width: 768px) {
    .social-icons {
      display: none !important;
    }
    nav {
      grid-template-columns: 1fr auto;
    }
    nav ul {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #fffffd;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      z-index: 100;
    }
    nav ul.open {
      display: flex;
      text-align: center;
    }
    nav ul li a {
      font-size: 16px;
      letter-spacing: 0.15em;
    }
    nav .social-icons {
      display: none !important;
    }
    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 101;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #000;
      transition: all 0.2s;
    }
    .close-menu {
      position: fixed;
      top: 1.2rem;
      right: 2.5rem;
      font-size: 24px;
      cursor: pointer;
      z-index: 102;
      background: none;
      border: none;
      display: none;
      font-family: Georgia, serif;
    }
    nav ul.open ~ .close-menu,
    .close-menu.visible {
      display: block;
    }
  }

  @media (min-width: 769px) {
    .hamburger { display: none; }
    .close-menu { display: none; }
    .mobile-socials { display: none !important; }
  }

  #mc_embed_signup {
    background: transparent;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  #mc_embed_signup_scroll {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .mc-field-group {
    width: 100%;
  }

  .mc-field-group input {
    width: 100%;
    background: #f4f3f2;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 0.75rem 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
    outline: none;
    box-sizing: border-box;
  }

  .mc-field-group input::placeholder {
    opacity: 0.4;
  }

  .mc-field-group input:focus {
    border-color: #000;
  }

  #mc-embedded-subscribe {
    background: #000;
    color: #fffffd;
    border: none;
    padding: 0.75rem 2.5rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
  }

  #mc-embedded-subscribe:hover {
    opacity: 0.7;
  }

  .response {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-align: center;
  }

  @media (max-width: 768px) {
    div[style*="grid-template-columns: 1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns: 1fr 1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }
    .album-layout {
      grid-template-columns: 1fr !important;
    }
  }

  .merch-item img {
    transition: opacity 0.2s, transform 0.2s;
  }

  .merch-item:hover img {
    opacity: 0.75;
    transform: scale(1.02);
  }

  .merch-item p {
    transition: opacity 0.2s;
  }

  .merch-item:hover p {
    opacity: 0.6;
  }
