*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

 
  .page {
    max-width: 760px;
    margin: 0 auto;
  }

  /* ===== PAGE HEADER ===== */
  .page-header {
    border-bottom: 1px solid #d4aa4a;
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .page-header-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b8922a;
    margin-bottom: 0.5rem;
  }

  .page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: #1a1409;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }

  /* ===== DAY SECTIONS ===== */
  .day-section {
    margin-bottom: 2.8rem;
  }

  .day-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.972rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888780;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.5px solid #d3d1c7;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .day-heading-date {
    font-family: 'Cinzel', serif;
    font-size: 0.978rem;
    font-weight: 600;
    color: #b8922a;
    letter-spacing: 0.1em;
  }

  /* ===== EVENTS ===== */
  .event-pre {
    padding: 1.6rem 0;
    border-bottom: none;
  } 

  .event {
    padding: 1.6rem 0;
    border-bottom: 0.5px solid #ebe4cf;
  }

  .event-pre:last-child, .event:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .event-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
  }

  .event-time {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #b8922a;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .event-location {
    font-size: 0.82rem;
    font-style: italic;
    color: #888780;
    letter-spacing: 0.02em;
  }

  .event h2., .event-pre h2  {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 600;
    color: #1a1409;
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .badge {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-size: 1.31rem;
    font-weight: 300;
    color: #8b3a1e;
    background: #fdf3ee;
    border-left: 2px solid #d4aa4a;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.03em;
  }

  .event-description {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #3d3020;
    font-weight: 300;
    max-width: 98%;
    margin-bottom: 1.1rem;
  }

 /* ===== TICKET BUTTON ===== */
  .event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .event-price {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1409;
    letter-spacing: 0.04em;
  }

  .btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a1409;
    background: transparent;
    border: 1px solid #b8922a;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, transform 0.12s;
  }

  .btn-ticket:hover { background: #1a1409; color: #ffffff; }
  .btn-ticket:hover svg { stroke: #ffffff; }
  .btn-ticket:active { transform: scale(0.98); }

  .btn-ticket svg {
    width: 13px;
    height: 13px;
    stroke: #1a1409;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.18s;
    flex-shrink: 0;
  }

  /* ===== ARTISTS BLOCK ===== */
  .artists {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.2rem 1.5rem;
    padding: 1rem 1.2rem;
    background: #faf7f0;
    border-left: 2px solid #d4aa4a;
  }

  .artist {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #1a1409;
  }

  .artist strong {
    font-weight: 500;
    display: block;
    font-size: 0.9rem;
  }

  .artist em {
    font-style: italic;
    color: #888780;
    font-size: 0.82rem;
  }

  .ensemble {
    grid-column: 1 / -1;
    padding-top: 0.4rem;
    margin-top: 0.2rem;
    border-top: 0.5px solid #d3d1c7;
    font-family: 'Cinzel', serif;
    font-size: 0.87rem;
    letter-spacing: 0.12em;
    color: #322a13;
    text-transform: uppercase;
    font-weight: bold;
  }

  .ensemble:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  /* ===== RADIO NOTE ===== */
  .radio-note {
    margin-top: 0.9rem;
    padding: 0.7rem 1rem;
    border: 0.5px solid #d3d1c7;
    font-size: 0.82rem;
    font-style: italic;
    color: #888780;
    line-height: 1.65;
    font-weight: 300;
  }

  /* ===== FOOTER ===== */
  .page-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #d4aa4a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888780;
    text-align: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 540px) {
    .artists { grid-template-columns: 1fr; }
    .day-heading { flex-direction: column; gap: 0.2rem; }
  }
