  :root {
    --ink: #0e0700;
    --paper: #fff8ee;
    --amber: #f09820;
    --gold: #ffc840;
    --rust: #9B2B10;
    --smoke: #4A3828;
    --cream: #ffffff;
    --fade: #e8c89a;
  }

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

  html {
    overflow-x: hidden; scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }

  body {
    background-color: var(--ink);
    color: var(--paper);
    font-family: 'Frank Ruhl Libre', serif;
    overflow: visible;
    direction: rtl;
    max-width: 100vw;
    width: 100%;
  }

  /* ─── GLOBAL BACKGROUND ─── */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("embedded-01c1bd79e7.png");
    background-size: cover;
    background-position: center center;
    opacity: 0.18;
    z-index: -1;
    pointer-events: none;
  }

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: calc(100svh - 57px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 8px 20px 60px;
    overflow: hidden;
    background-image:
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(61,26,0,0.75) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 20% 80%, rgba(107,40,0,0.6) 0%, transparent 60%),
      linear-gradient(to bottom, rgba(14,7,0,0.5) 0%, rgba(14,7,0,0.65) 100%),
      url("embedded-01c1bd79e7.png");
    background-size: cover;
    background-position: center 20%;
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--ink), transparent);
  }

  /* smoke rings */
  .smoke-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 130, 15, 0.12);
    animation: expand 8s ease-out infinite;
    pointer-events: none;
    overflow: hidden;
    max-width: 100vw;
  }
  .smoke-ring:nth-child(1) { width: 300px; height: 300px; top: 10%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
  .smoke-ring:nth-child(2) { width: 500px; height: 500px; top: 5%; left: 50%; transform: translateX(-50%); animation-delay: 2s; }
  .smoke-ring:nth-child(3) { width: 700px; height: 700px; top: 0%; left: 50%; transform: translateX(-50%); animation-delay: 4s; }

  @keyframes expand {
    0% { opacity: 0; transform: translateX(-50%) scale(0.6); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) scale(1.2); }
  }

  .ks-top-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-bottom: 2px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .ks-top-img {
    width: clamp(135px, 21vw, 240px);
    height: auto;
    display: block;
    filter:
      invert(1) hue-rotate(180deg) brightness(1.6) saturate(2)
      drop-shadow(0 0 10px rgba(0,200,255,1))
      drop-shadow(0 0 25px rgba(0,170,255,0.8))
      drop-shadow(0 0 50px rgba(0,140,255,0.5));
    mix-blend-mode: lighten;
    animation: starPulse 2.5s ease-in-out infinite;
    will-change: transform, opacity;
  }

  .ks-top-presents {
    font-family: 'Special Elite', cursive;
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    letter-spacing: 0.5em;
    color: #8B4513;
    text-transform: uppercase;
    margin-top: -12px;
  }

  .hero-city {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 18vw, 14rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,130,15,0.4);
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-pretitle {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #d8b882;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    direction: rtl;
    font-size: clamp(2.8rem, 8vw, 7rem);
    line-height: 1;
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 40%, #FF8C42 70%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
    text-shadow: none;
    filter: drop-shadow(0 0 40px rgba(212,130,15,0.3));
  }

  .hero-sub {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--paper);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
  }

  .hero-dates-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
  }

  .hero-date {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-date .day-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 1;
    color: var(--gold);
    display: block;
    text-align: center;
    animation: datePulse 3s ease-in-out infinite;
    will-change: transform, opacity;
  }

  .hero-dates-block .hero-date:last-child .day-num {
    animation-delay: 0.8s;
  }

  .hero-date .day-label {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #d8b882;
    text-transform: uppercase;
  }

  .date-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.15em;
    display: block;
    animation: datePulse 3s ease-in-out infinite;
    animation-delay: 0.4s;
    will-change: transform, opacity;
    margin-top: -0.3em;
  }

  .hero-month {
    font-family: 'Special Elite', cursive;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.4em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
  }

  .hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease 1.4s forwards;
  }

  .perk-item {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    color: #F4E9D0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  }

  .perk-star {
    color: var(--gold);
    font-size: 0.75rem;
    animation: starPulse 2.5s ease-in-out infinite;
    display: inline-block;
  }

  .perk-item:nth-child(2) .perk-star { animation-delay: 0.6s; }
  .perk-item:nth-child(3) .perk-star { animation-delay: 1.2s; }
  .perk-item:nth-child(4) .perk-star { animation-delay: 1.8s; }

  @keyframes datePulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
      filter: drop-shadow(0 0 8px rgba(240,180,41,0.9)) drop-shadow(0 0 20px rgba(212,130,15,0.5));
    }
    50% {
      opacity: 0.82;
      transform: scale(0.96);
      filter: drop-shadow(0 0 3px rgba(240,180,41,0.4));
    }
  }

  .instrument-divider {
    text-align: center;
    padding: 0;
    margin-bottom: -80px;
    line-height: 0;
    font-size: 0;
    overflow: visible;
    position: relative;
    z-index: 10;
    pointer-events: none;
    background: transparent !important;
  }
  .divider-instrument {
    width: auto;
    mix-blend-mode: screen;
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(212,130,15,0.85)) drop-shadow(0 0 28px rgba(212,130,15,0.4));
    animation: float 5s ease-in-out infinite;
    opacity: 0.9;
    display: inline-block;
    vertical-align: bottom;
  }
  .trumpet-img   { height: 140px; animation-delay: 0s; }
  .drums-img     { height: 450px; animation-delay: 1s; }
  .harmonica-img { height: 330px; animation-delay: 0.5s; }
  @media (max-width: 600px) {
    .trumpet-img   { height: 90px; }
    .drums-img     { display: none !important; }
    .harmonica-img { height: 210px; }
  }

  @keyframes starPulse {
    0%, 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 3px var(--gold)); }
    50% { opacity: 0.5; transform: scale(0.8); filter: none; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── DIVIDER ─── */
  .divider {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    margin: 0 auto;
    max-width: 900px;
  }
  .divider-line { flex: 1; height: 1px; background: linear-gradient(to left, transparent, var(--amber), transparent); }
  .divider-icon { color: var(--amber); font-size: 1.4rem; }

  /* ─── SECTION BASE ─── */
  section { padding: 100px 24px; }

  .container { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-family: 'Special Elite', cursive;
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
  }

  .section-title em {
    font-style: normal;
    color: var(--amber);
    text-shadow: 0 0 20px rgba(212,130,15,0.6), 0 0 50px rgba(212,130,15,0.25);
  }

  /* ─── ABOUT ─── */
  .about {
    background: linear-gradient(180deg, var(--ink) 0%, #1C0C02 50%, var(--ink) 100%);
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  @media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-visual { display: none; }
  }

  .about-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.9;
    color: #d8b882;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
  }

  .about-text p strong {
    color: var(--paper);
    font-weight: 700;
  }

  .about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .guitar-art {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1;
    position: relative;
  }

  .guitar-art svg { width: 100%; height: 100%; }

  /* ─── DETAILS STRIP ─── */
  .details-strip {
    background: linear-gradient(135deg, #1E0D00 0%, #2A1200 50%, #1E0D00 100%);
    border-top: 1px solid rgba(212,130,15,0.2);
    border-bottom: 1px solid rgba(212,130,15,0.2);
    padding: 80px 24px;
  }

  .details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  @media (max-width: 700px) {
    .details-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }
  @media (max-width: 520px) {
    .details-grid {
      grid-template-columns: 1fr;
      max-width: 260px;
      gap: 16px;
    }
    .detail-item {
      max-width: 260px;
      width: 260px;
    }
  }

  .detail-item {
    padding: 32px 20px;
    border: 1px solid rgba(212,130,15,0.2);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    position: relative;
    background: rgba(212,130,15,0.04);
    transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* slide-in state */
    opacity: 0;
    transform: translateX(var(--slide-dir, -120px));
  }

  .detail-item.in-view {
    opacity: 1;
    transform: translateX(0);
  }

  .detail-item:hover {
    border-color: rgba(212,130,15,0.55);
    background: rgba(212,130,15,0.08);
    box-shadow: 0 0 24px rgba(212,130,15,0.15), inset 0 0 16px rgba(212,130,15,0.06);
    transform: scale(1.04);
  }

  .detail-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
  }

  .detail-title {
    font-family: 'Special Elite', cursive;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .detail-value {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.4;
  }

  .detail-sub {
    font-size: 0.85rem;
    color: #d8b882;
    margin-top: 6px;
  }

  /* ─── LINEUP ─── */
  .lineup {
    background: var(--ink);
    position: relative;
    overflow: visible;
  }

  .lineup::before {
    content: 'BLUES';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,130,15,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
  }

  .quote-mic-wrapper { display: none; }
  @media (max-width: 900px) {
    .quote-mic-wrapper {
      display: flex;
      justify-content: center;
      margin: 20px 0 8px;
    }
    .quote-mic-img {
      height: clamp(140px, 38vw, 220px);
      width: auto;
      mix-blend-mode: screen;
      opacity: 0.88;
      filter:
        brightness(1.4)
        drop-shadow(0 0 12px rgba(255,165,0,0.9))
        drop-shadow(0 0 28px rgba(255,130,0,0.6))
        drop-shadow(0 0 55px rgba(255,100,0,0.3));
    }
  }

  .lineup-inner { position: relative; z-index: 2; text-align: center; }

  .nights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
  }

  @media (max-width: 700px) {
    .nights-grid { grid-template-columns: 1fr; }
  }

  .night-card {
    border: 1px solid rgba(212,130,15,0.25);
    padding: 40px 32px;
    position: relative;
    background: linear-gradient(135deg, rgba(212,130,15,0.04) 0%, transparent 60%);
    transition: all 0.4s;
  }

  .night-card:hover {
    border-color: rgba(212,130,15,0.5);
    background: linear-gradient(135deg, rgba(212,130,15,0.08) 0%, transparent 60%);
  }

  .night-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at top right, rgba(212,130,15,0.15), transparent 70%);
  }

  .night-label {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: #8B5E3C;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .night-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .night-date {
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    color: #d8b882;
    margin-bottom: 24px;
  }

  .night-time {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(212,130,15,0.3);
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    color: var(--amber);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
  }

  .night-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d8b882;
    font-weight: 300;
  }

  .band-count {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
  }

  .band-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.8rem;
    color: var(--amber);
    line-height: 1;
  }

  .band-word {
    font-size: 1rem;
    color: #d8b882;
  }

  /* ─── LOCATION ─── */
  .location-section {
    background:
      radial-gradient(ellipse at center, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.92) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.82) 100%),
      url("embedded-b56d43c472.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 50px 24px 60px;
    position: relative;
  }

  .location-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  @media (max-width: 768px) {
    .location-wrap { grid-template-columns: 1fr; gap: 40px; }
  }

  .location-address {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 24px;
    text-align: center;
  }

  .location-address span { color: var(--amber); }

  .location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    justify-content: center;
  }

  .loc-tag {
    padding: 8px 16px;
    border: 1px solid rgba(212,130,15,0.3);
    font-size: 0.85rem;
    color: #d8b882;
    border-radius: 2px;
    font-family: 'Frank Ruhl Libre', serif;
  }

  .map-real {
    aspect-ratio: 4/3;
    border: 1px solid rgba(212,130,15,0.3);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 700px;
  }
  .map-real::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212,130,15,0.3);
    border-radius: 8px;
    pointer-events: none;
  }

  .map-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1C0C02, #2A1500);
    border: 1px solid rgba(212,130,15,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
  }

  .map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 29px,
      rgba(212,130,15,0.05) 29px,
      rgba(212,130,15,0.05) 30px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 29px,
      rgba(212,130,15,0.05) 29px,
      rgba(212,130,15,0.05) 30px
    );
  }

  .map-pin {
    font-size: 3rem;
    margin-bottom: 12px;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }

  .map-text {
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--amber);
    text-align: center;
  }

  /* ─── ABOUT ORG ─── */
  .org-section {
    background: #0A0500;
    padding: 100px 24px;
    border-top: 1px solid rgba(212,130,15,0.1);
  }

  .org-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .orgs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  @media (max-width: 768px) {
    .orgs-grid { grid-template-columns: 1fr; }
  }

  .org-card {
    padding: 48px 40px;
    border: 1px solid rgba(212,130,15,0.15);
    position: relative;
    background: linear-gradient(135deg, rgba(212,130,15,0.03), transparent);
    transition: all 0.4s;
  }

  .org-card:hover {
    border-color: rgba(212,130,15,0.35);
  }

  .org-card-num {
    position: absolute;
    top: 24px;
    left: 32px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(212,130,15,0.08);
    line-height: 1;
    pointer-events: none;
  }

  .org-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .org-sub {
    font-family: 'Special Elite', cursive;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--rust);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .org-body {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #d8b882;
    font-weight: 300;
  }

  .awards {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .award {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: #d8b882;
  }

  .award::before {
    content: '✦';
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* ─── CTA ─── */
  .cta-section {
    padding: 140px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0A0500 0%, var(--ink) 100%);
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,130,15,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
    position: relative;
  }

  .cta-title span { color: var(--amber); }

  .cta-sub {
    font-size: 1.1rem;
    color: #f0d4a0;
    margin-bottom: 48px;
    font-weight: 300;
    font-style: normal;
    position: relative;
    text-shadow: 0 0 16px rgba(200,168,122,0.35);
  }

  .free-entry {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: 0.05em;
    color: transparent;
    -webkit-text-stroke: 2px var(--amber);
    display: block;
    margin-bottom: 48px;
    line-height: 1;
    animation: glow 3s ease-in-out infinite alternate;
  }

  @keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(212,130,15,0.2)); }
    to { filter: drop-shadow(0 0 60px rgba(212,130,15,0.5)); }
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }

  .btn-primary {
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--ink);
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), #FFCC55);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212,130,15,0.3);
  }

  .btn-outline {
    padding: 18px 48px;
    background: transparent;
    color: var(--amber);
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 400;
    font-size: 1.1rem;
    border: 1px solid var(--amber);
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-outline:hover {
    background: rgba(212,130,15,0.08);
    transform: translateY(-2px);
  }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid rgba(212,130,15,0.15);
    padding: 60px 24px 40px;
    text-align: center;
    background: #080400;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: var(--amber);
    margin-bottom: 8px;
  }

  .footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.95rem;
    color: #f0d4a0;
    margin-bottom: 40px;
    text-shadow: 0 0 14px rgba(200,168,122,0.3);
  }

  .footer-info {
    font-size: 0.85rem;
    color: rgba(240,210,160,1);
    line-height: 2;
  }

  .footer-info span {
    color: var(--amber);
  }

  /* ─── HORIZONTAL MARQUEE ─── */
  /* marquee-wrap first definition removed */

  .marquee-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(14,7,0,0.8);
    border-top: 1px solid #D4820F;
    border-bottom: 1px solid #D4820F;
    padding: 16px 0;
    box-sizing: border-box;
    direction: ltr;
  }
  .marquee-inner {
    display: flex;
    width: max-content;
    direction: ltr;
    animation: marquee 81s linear infinite;
    will-change: transform;
  }
  .marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    flex-shrink: 0;
  }
  .marquee-track-2 {
    display: none;
  }
  .marquee-item {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: #F0B429;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .marquee-dot {
    color: #D4820F;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── HERO SIDE INSTRUMENTS ─── */
  .hero-side-instrument {
    position: absolute;
    bottom: 0;
    height: 75vh;
    max-height: 680px;
    min-height: 320px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    will-change: opacity;
    transform: translateZ(0);
  }
  .hero-mic {
    left: -1vw;
    transform-origin: bottom left;
    filter:
      brightness(1.3)
      drop-shadow(0 0 10px rgba(255,165,0,0.9))
      drop-shadow(0 0 24px rgba(255,130,0,0.55))
      drop-shadow(0 0 50px rgba(255,100,0,0.25));
    animation: float 5s ease-in-out infinite, instrumentFlickerGold 4.8s ease-in-out infinite;
    animation-delay: 0s, 2.2s;
  }
  .hero-bass {
    right: -1vw;
    transform-origin: bottom right;
    filter:
      brightness(1.4)
      drop-shadow(0 0 12px rgba(212,130,15,0.85))
      drop-shadow(0 0 28px rgba(212,130,15,0.5))
      drop-shadow(0 0 55px rgba(212,130,15,0.25));
    animation: float 5s ease-in-out infinite, instrumentFlickerAmber 5.5s ease-in-out infinite;
    animation-delay: 1.5s, 0.8s;
  }
  @media (max-width: 900px) {
    .hero {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 30% 20%;
      padding: 6px 20px 40px !important;
    }
    .ks-top-logo { margin-top: 0; margin-bottom: 2px; }
    .ks-top-presents { margin-top: -12px; }
    .hero-pretitle { margin-top: 2px; margin-bottom: 4px; }
    .hero-title { margin-bottom: 4px; }
    .hero-sub { margin-bottom: 8px; }
    .hero-dates-block { margin-bottom: 4px; }
    .hero-month-block { margin-top: -12px; margin-bottom: 10px; }
    .hero-perks { gap: 8px 16px; }
    .hero-side-instrument {
      height: 30vh;
      max-height: 180px;
      min-height: 120px;
      mix-blend-mode: screen;
      opacity: 0.7;
    }
    .hero-mic  { left: -14vw; bottom: auto; top: 20%; }
    .hero-bass { right: -14vw; bottom: auto; top: 20%; }
  }

  /* ─── SCROLL DARKENING OVERLAY ─── */
  #scroll-dark-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,4,0,0);
    z-index: 0;
    pointer-events: none;
    transition: background 0.4s ease;
  }

  /* ─── INSTRUMENT IMAGES ─── */
  .instrument-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .instrument-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(212,130,15,0.5));
    animation: float 4s ease-in-out infinite;
  }
  .guitar-photo {
    max-height: 320px;
    mix-blend-mode: screen;
  }
  @media (max-width: 900px) {
    .hero-side-instrument { display: none !important; }
    .hero-title-row { display: block; }
  }

  .bass-visual-wrap {
    text-align: center;
    margin: 20px auto;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .bass-visual-img {
    height: 210px;
    filter: drop-shadow(0 0 30px rgba(212,130,15,0.4));
    mix-blend-mode: screen;
  }
  @media (max-width: 900px) {
    .drums-img { display: none !important; }
    .bass-visual-img { height: 135px; }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── FESTIVAL WHAT SECTION ─── */
  .festival-what-section {
    margin: 60px auto 0;
    max-width: 800px;
    border: 1px solid rgba(212,130,15,0.2);
    border-radius: 12px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212,130,15,0.05), transparent);
  }
  .festival-what-header {
    text-align: center;
    margin-bottom: 32px;
  }
  .festival-what-label {
    font-family: 'Special Elite', cursive;
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: var(--amber);
    text-transform: uppercase;
  }
  .festival-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  @media (max-width: 600px) { .festival-what-grid { grid-template-columns: 1fr; } }
  .festival-what-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
  }
  .festival-what-items { display: flex; flex-direction: column; gap: 10px; }
  .festival-what-item {
    font-size: 0.95rem;
    color: #d8b882;
    padding-right: 18px;
    position: relative;
    line-height: 1.6;
  }
  .festival-what-item::before {
    content: '✦';
    position: absolute;
    right: 0;
    color: var(--amber);
    font-size: 0.6rem;
    top: 5px;
  }

  /* ─── KS EXPAND BUTTON ─── */
  .ks-expand-btn {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(212,130,15,0.4);
    color: var(--amber);
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    width: 100%;
    justify-content: space-between;
  }
  .ks-expand-btn:hover {
    background: rgba(212,130,15,0.1);
    border-color: var(--amber);
  }
  .ks-expanded {
    display: none;
    margin-top: 24px;
    border-top: 1px solid rgba(212,130,15,0.15);
    padding-top: 24px;
    animation: fadeUp 0.5s ease forwards;
  }
  .ks-expanded.open { display: block; }
  .ks-section {
    margin-bottom: 32px;
  }
  .ks-section-title {
    font-family: 'Special Elite', cursive;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212,130,15,0.15);
  }
  .ks-list { display: flex; flex-direction: column; gap: 8px; }
  .ks-item {
    font-size: 0.9rem;
    color: #d8b882;
    line-height: 1.7;
    padding-right: 16px;
    position: relative;
  }
  .ks-item::before {
    content: '✦';
    position: absolute;
    right: 0;
    color: var(--rust);
    font-size: 0.6rem;
    top: 5px;
  }
  .ks-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  @media (max-width: 500px) { .ks-team-grid { grid-template-columns: 1fr; } }
  .ks-member {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    background: rgba(212,130,15,0.04);
    border: 1px solid rgba(212,130,15,0.1);
    border-radius: 2px;
  }
  .ks-member-name {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 700;
  }
  .ks-member-role {
    font-size: 0.78rem;
    color: #d8b882;
  }
  .ks-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 500px) { .ks-two-col { grid-template-columns: 1fr; } }
  .ks-col-label {
    font-size: 0.85rem;
    color: var(--amber);
    margin-bottom: 10px;
    font-weight: 700;
  }
  .ks-note {
    font-size: 0.8rem;
    color: rgba(240,210,160,1);
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(212,130,15,0.1);
    letter-spacing: 0.05em;
  }

  /* ─── QUOTE ─── */
  .quote-block {
    border-right: 3px solid var(--amber);
    padding-right: 28px;
    margin: 60px auto;
    max-width: 700px;
  }

  .quote-text {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    text-shadow: 0 0 24px rgba(244,233,208,0.25), 0 0 60px rgba(212,130,15,0.12);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #ffffff;
    line-height: 1.6;
    text-align: right;
  }

  .quote-attr {
    font-size: 0.85rem;
    color: var(--amber);
    letter-spacing: 0.2em;
    margin-top: 16px;
    font-family: 'Special Elite', cursive;
    text-transform: uppercase;
  }

  /* ─── SPONSORS ─── */
  .sponsors-section {
    background: #000000;
    padding: 80px 24px 60px;
    border-top: 1px solid rgba(212,130,15,0.08);
  }
  .sponsors-label {
    text-align: center;
    font-family: 'Special Elite', cursive;
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    color: #FF9A2E;
    text-transform: uppercase;
    margin-bottom: 56px;
  }

  .sponsors-row  { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:36px; width:100%; }






  

  
  .city-logo-link {
    position:fixed !important; top:14px; right:14px;
    z-index:9999 !important; display:block;
    opacity:0.92; transition:opacity 0.25s;
  }
  .city-logo-link:hover { opacity:1; }
  .city-logo-img { width:clamp(50px,5vw,70px); height:auto; display:block;
    filter:drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }
  


  




  /* ====== CITY LOGO FIXED ====== */
  .city-logo-link {
    position:fixed!important; top:14px!important; right:14px!important;
    z-index:2147483647!important; display:block!important;
    opacity:0.9; transition:opacity .25s;
  }
  .city-logo-link:hover { opacity:1; }
  .city-logo-img {
    width:clamp(50px,5vw,70px); height:auto; display:block;
    filter:drop-shadow(0 2px 6px rgba(0,0,0,.6));
  }
  /* ====== END CITY LOGO ====== */




  @media(min-width:769px) {
    .sponsor-lr { height:220px!important; }
    div.neon-orange-wrap img, .sponsor-wine { height:120px!important; }
    div.neon-pink-wrap img, .sponsor-neon-flicker-pink { height:120px!important; }
  }


  /* ===================== FINAL SPONSOR CSS ===================== */
  @keyframes neonGreen  { 0%,89%,91%,100%{opacity:1;filter:brightness(1.8) drop-shadow(0 0 8px rgba(80,255,100,.9)) drop-shadow(0 0 20px rgba(80,255,100,.5));} 90%{opacity:.8;filter:brightness(1.3) drop-shadow(0 0 3px rgba(80,255,100,.4));} }
  @keyframes neonOrange { 0%,84%,86%,100%{opacity:1;filter:brightness(1.3) drop-shadow(0 0 6px rgba(255,160,0,.9)) drop-shadow(0 0 16px rgba(255,130,0,.5));} 85%{opacity:.8;filter:brightness(1.1) drop-shadow(0 0 3px rgba(255,160,0,.4));} }
  @keyframes neonCyan   { 0%,88%,90%,100%{opacity:1;filter:brightness(1.3) drop-shadow(0 0 8px rgba(0,230,255,.9)) drop-shadow(0 0 20px rgba(0,200,255,.4));} 89%{opacity:.8;filter:brightness(1.1) drop-shadow(0 0 3px rgba(0,230,255,.4));} }

  .sponsors-grid { display:flex!important;flex-direction:column!important;align-items:center!important;gap:40px!important;width:100%!important; }
  .sponsors-row  { display:flex!important;flex-wrap:wrap!important;justify-content:center!important;align-items:center!important;gap:40px!important;width:100%!important; }

  /* Base size + neon for each logo */
  div.neon-green-wrap   img { height:110px!important;filter:brightness(1.8) drop-shadow(0 0 8px rgba(80,255,100,.9)) drop-shadow(0 0 20px rgba(80,255,100,.5)) drop-shadow(0 0 40px rgba(80,255,100,.3))!important;animation:neonGreen 5s ease-in-out infinite!important; }
  div.neon-orange-wrap  img { height:90px!important;filter:brightness(1.3) drop-shadow(0 0 6px rgba(255,160,0,.9)) drop-shadow(0 0 16px rgba(255,130,0,.5))!important;animation:neonOrange 4.5s ease-in-out infinite!important; }
  div.neon-cyan-wrap    img { height:80px!important;filter:brightness(1.3) drop-shadow(0 0 8px rgba(0,230,255,.9)) drop-shadow(0 0 20px rgba(0,200,255,.4))!important;animation:neonCyan 5s ease-in-out infinite!important; }
  div.neon-lime-wrap    img { height:80px!important;filter:brightness(1.2) drop-shadow(0 0 8px rgba(80,255,80,.9)) drop-shadow(0 0 22px rgba(50,220,50,.5))!important;animation:neonGreen 6s ease-in-out infinite!important; }
  div.neon-pink-wrap    img { height:90px!important;filter:brightness(1.2) drop-shadow(0 0 8px rgba(255,0,220,.9)) drop-shadow(0 0 22px rgba(220,0,200,.5))!important;animation:neonOrange 4.5s ease-in-out infinite!important; }
  div.neon-florin-wrap  img { height:80px!important;filter:drop-shadow(0 0 10px rgba(140,140,255,.9)) drop-shadow(0 0 25px rgba(120,120,240,.5))!important;animation:neonGreen 5s ease-in-out infinite!important; }
  div.neon-fratelo-wrap img { height:80px!important;filter:drop-shadow(0 0 10px rgba(200,0,255,.9)) drop-shadow(0 0 25px rgba(160,0,220,.5))!important;animation:neonOrange 6s ease-in-out infinite!important; }
  div.neon-portal-wrap  img { height:80px!important;filter:drop-shadow(0 0 10px rgba(220,230,0,.9)) drop-shadow(0 0 25px rgba(190,200,0,.5))!important;animation:neonGreen 7s 1s ease-in-out infinite!important; }
  div.neon-agrisolar-wrap img{ height:80px!important;filter:drop-shadow(0 0 10px rgba(0,230,80,.9)) drop-shadow(0 0 25px rgba(0,190,60,.5))!important;animation:neonGreen 5.5s 2s ease-in-out infinite!important; }
  /* Enoteca/Vinea/SanMiguel use class not neon-wrap */
  .sponsor-neon-flicker-cyan  { filter:brightness(1.3) drop-shadow(0 0 8px rgba(0,230,255,.9)) drop-shadow(0 0 20px rgba(0,200,255,.4))!important;animation:neonCyan 5s ease-in-out infinite!important; }
  .sponsor-neon-flicker-lime  { filter:brightness(1.2) drop-shadow(0 0 8px rgba(80,255,80,.9)) drop-shadow(0 0 22px rgba(50,220,50,.5))!important;animation:neonGreen 6s 1s ease-in-out infinite!important; }
  .sponsor-neon-flicker-pink  { filter:brightness(1.2) drop-shadow(0 0 8px rgba(255,0,220,.9)) drop-shadow(0 0 22px rgba(220,0,200,.5))!important;animation:neonOrange 4.5s ease-in-out infinite!important; }

  @media(min-width:769px) {
    div.neon-green-wrap   img { height:220px!important; }
    div.neon-orange-wrap  img { height:120px!important; }
    div.neon-pink-wrap    img,
    .sponsor-neon-flicker-pink { height:120px!important; }
    div.neon-cyan-wrap    img,
    div.neon-lime-wrap    img,
    .sponsor-neon-flicker-cyan,
    .sponsor-neon-flicker-lime,
    div.neon-florin-wrap  img,
    div.neon-fratelo-wrap img,
    div.neon-portal-wrap  img,
    div.neon-agrisolar-wrap img { height:100px!important; }
  }
  /* ===================== END SPONSOR CSS ===================== */


/* ===== FIXES: city logo only in hero + tighter footer contact spacing ===== */
.hero .city-logo-link,
.hero-city-logo {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 5 !important;
  display: block !important;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}
.hero .city-logo-link:hover,
.hero-city-logo:hover {
  opacity: 1;
}
.hero .city-logo-img,
.hero-city-logo .city-logo-img {
  width: clamp(50px, 5vw, 70px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

.footer-contact {
  margin-top: 18px;
}
.footer-contact-title {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--amber);
  line-height: 1.3;
}
.footer-social {
  margin: 0 0 10px !important;
}
.footer-contact-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.contact-person {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-name {
  color: var(--cream);
  font-weight: 700;
}
.contact-link {
  color: #f0d4a0;
  text-decoration: none;
}
.contact-link:hover {
  color: var(--gold);
}
@media (max-width: 900px) {
  .hero .city-logo-link,
  .hero-city-logo {
    top: 10px !important;
    right: 10px !important;
  }
  .footer-contact {
    margin-top: 14px;
  }
  .footer-contact-title {
    margin-bottom: 8px;
  }
}
/* ===== END FIXES ===== */


/* ===== contact moved directly under sponsors ===== */
.post-sponsors-contact {
  background:#000;
  padding: 8px 24px 24px;
}
.post-sponsors-contact .footer-contact {
  margin-top: 0;
  text-align: center;
}
.post-sponsors-contact .footer-contact-title {
  margin-bottom: 10px;
}
footer {
  padding-top: 26px;
}
/* ===== end moved contact block ===== */
