 :root {
      --bg: #fdfdea;
      --red: #d91513;
      --red-dark: #9d0e0d;
      --gold: #d6b46b;
      --text: #111111;
      --shadow: rgba(0, 0, 0, 0.12);
      --container: 1120px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.4;
      overflow-x: hidden;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .page {
      position: relative;
      min-height: 100vh;
      isolation: isolate;
    }

    .container {
      width: min(100% - 2rem, var(--container));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .cloud {
      position: absolute;
      z-index: 0;
      pointer-events: none;
      opacity: 0.96;
    }

    .cloud--top-right {
      top: 320px;
      right: -40px;
      width: min(34vw, 420px);
    }

    .cloud--left-mid {
      top: 640px;
      left: -50px;
      width: min(34vw, 420px);
    }

    .cloud--right-bottom {
      top: 1120px;
      right: -20px;
      width: min(31vw, 360px);
    }

    .cloud--right-lower {
      bottom: 120px;
      right: -40px;
      width: min(36vw, 420px);
    }

    .hero {
      padding: 100px 0 48px;
      text-align: center;
    }

    .brand {
      width: min(260px, 52vw);
      margin: 0 auto 60px;
    }

    .hero-title {
      width: min(760px, 100%);
      margin: 0 auto 50px;
    }

    .event-date {
      width: min(220px, 46vw);
      margin: 0 auto 46px;
    }

    .location-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .map {
      width: min(340px, 45vw);
      margin-right: -120px;
    }

    .location-text{
      max-width: 330px;
      text-align: left;
      margin-top: -130px;
    }

    .location-text img {
      width: 70%;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 250px;
      min-height: 82px;
      padding-left:80px;
      padding-right:80px;
      background: var(--red);
      border-bottom: 4px solid var(--gold);
      border-left: 4px solid var(--gold);
      box-shadow: 0 12px 30px var(--shadow);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
      background: var(--red-dark);
    }

    .lineup {
      padding: 110px 0 110px;
      text-align: center;
    }

    .lineup-title {
      width: min(260px, 56vw);
      margin: 0 auto 40px;
    }

    .lineup-headliner {
      width: min(180px, 46vw);
      margin: 0 auto 48px;
    }

    .artists-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(150px, 1fr));
      gap: 2.2rem 2rem;
      align-items: center;
      max-width: 760px;
      margin: 0 auto;
    }

    .artist-card {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px;
      padding: 0.5rem;
    }

    .artist-card img {
      max-height: 88px;
      object-fit: contain;
      filter: drop-shadow(0 5px 10px rgba(0,0,0,0.08));
    }

    .footer-space {
      height: 40px;
    }

    @media (max-width: 991px) {
      .hero {
        padding-top: 48px;
      }

      .location-text {
        text-align: center;
      }

      .artists-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        max-width: 560px;
      }

      .cloud--top-right {
        top: 320px;
        width: 260px;
      }

      .cloud--left-mid {
        top: 780px;
        width: 260px;
      }

      .cloud--right-bottom,
      .cloud--right-lower {
        width: 240px;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 1.25rem, var(--container));
      }

      .hero {
        padding: 32px 0 28px;
      }

      .brand {
        margin-bottom: 30px;
      }

      .hero-title {
        margin-bottom: 28px;
      }

      .event-date {
        margin-bottom: 36px;
      }
      .map {
        width: min(340px, 75vw);
        margin-right:0px;
      }
      .location-text{
        max-width: 330px;
        text-align: center;
        margin-top: -20px;
        margin-left: 20%;
      }

      .location-wrap {
        gap: 1.25rem;
        margin-bottom: 42px;
      }

      .cta {
        min-width: 100%;
        min-height: 74px;
        padding: 0.9rem 1rem;
      }

      .lineup {
        padding: 72px 0 82px;
      }

      .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
        max-width: 280px;
      }

      .artist-card {
        min-height: 84px;
      }

      .artist-card img {
        max-height: 72px;
      }

      .cloud--top-right {
        top: 300px;
        right: -70px;
        width: 180px;
      }

      .cloud--left-mid {
        top: 730px;
        left: -80px;
        width: 180px;
      }

      .cloud--right-bottom {
        top: 1120px;
        right: -70px;
        width: 180px;
      }

      .cloud--right-lower {
        bottom: 220px;
        right: -70px;
        width: 180px;
      }
    }