:root {
    --beige:       #E8DDD0;
    --beige-mid:   #D9CABA;
    --beige-dark:  #C4B09A;
    --orange:      #E8600A;
    --orange-light:#F2874A;
    --orange-pale: #FDE8D8;
    --ink:         #1A1208;
    --ink-mid:     #4A3C2A;
    --ink-light:   #8A7A66;
    --white:       #FFFCF8;
    --font-display:'Playfair Display', Georgia, serif;
    --font-body:   'DM Sans', sans-serif;
    --radius:      12px;
    --transition:  0.2s ease;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { background: var(--beige); color: var(--ink); font-family: var(--font-body); font-weight: 400; line-height: 1.65; overflow-x: hidden; }
  h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }
  h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 900; }
  h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
  h3 { font-size: 1.4rem; font-weight: 700; }
  p  { color: var(--ink-mid); font-size: 1.05rem; }
  a  { color: inherit; text-decoration: none; }

  .section-label {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
    margin-bottom: 0.75rem; display: block;
  }

  /* LAYOUT */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .section    { padding: 6rem 0; }
  .section-alt  { background: var(--beige-mid); }
  .section-dark { background: var(--ink); color: var(--beige); }
  .section-dark p { color: var(--beige-dark); }

  /* BUTTONS */
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; border-radius: 50px; font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 500; cursor: pointer; border: none;
    transition: var(--transition); letter-spacing: 0.04em;
  }
  .btn-primary { background: var(--orange); color: var(--white); }
  .btn-primary:hover { background: var(--orange-light); }
  .btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
  .btn-outline:hover { background: var(--ink); color: var(--white); }
  .btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
  .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

  /* REVEAL */
  .reveal { opacity: 0; transition: opacity 0.4s ease; }
  .reveal.visible { opacity: 1; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between;
    background: rgba(245,239,230,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(214,200,180,0.4); transition: var(--transition);
  }
  .nav-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; }
  .nav-logo span { color: var(--orange); }
  .nav-links { display: flex; gap: 2.2rem; list-style: none; }
  .nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--ink-mid); letter-spacing: 0.04em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta { display: flex; gap: 0.75rem; align-items: center; }
  .nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
  .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }

  /* HERO */
  #hero {
    min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 4rem; padding: 10rem 2rem 6rem;
    max-width: 1200px; margin: 0 auto;
  }
  .hero-content h1 { margin-bottom: 1.5rem; line-height: 1.05; }
  .hero-content h1 em { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 700; color: var(--orange); }
  .hero-content p { font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 440px; line-height: 1.7; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--beige-dark); }
  .stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--orange); display: block; line-height: 1; }
  .stat-label { font-size: 0.8rem; color: var(--ink-light); letter-spacing: 0.06em; text-transform: uppercase; }
  .hero-visual { position: relative; height: 520px; }
  .hero-blob {
    position: absolute; inset: 0;
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    background: linear-gradient(135deg, var(--orange-pale) 0%, var(--beige-mid) 60%, var(--beige-dark) 100%);
    animation: morphBlob 8s ease-in-out infinite;
  }
  @keyframes morphBlob {
    0%,100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
    33%      { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
    66%      { border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
  }
  .hero-image-placeholder {
    position: absolute; inset: 30px; border-radius: inherit;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1rem; color: var(--ink-light);
    font-style: italic; text-align: center; padding: 2rem;
  }
  .hero-badge {
    position: absolute; bottom: 40px; right: -20px;
    background: var(--ink); color: var(--white); padding: 1rem 1.4rem;
    border-radius: 16px; font-size: 0.8rem; font-weight: 500; line-height: 1.4;
    box-shadow: 0 8px 24px rgba(26,18,8,0.18);
  }
  .hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--orange-light); }

  /* EVENTS */
  .events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
  .events-tabs { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; border-bottom: 2px solid var(--beige-dark); }
  .tab-btn {
    padding: 0.6rem 1.4rem; border: none; background: none; cursor: pointer;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
    color: var(--ink-light); letter-spacing: 0.05em;
    border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition);
  }
  .tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
  .events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
  .event-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--beige-dark); transition: var(--transition); cursor: pointer; position: relative;
  }
  .event-card:hover { box-shadow: 0 8px 24px rgba(26,18,8,0.1); }
  .event-badge-type {
    position: absolute; top: 1rem; right: 1rem; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 50px;
  }
  .badge-past    { background: var(--beige-dark); color: var(--ink-mid); }
  .badge-upcoming{ background: var(--ink); color: var(--beige); }
  .event-img {
    height: 180px; background: linear-gradient(135deg, var(--orange-pale), var(--beige-mid));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-style: italic; color: var(--ink-light); font-size: 0.9rem;
    position: relative; overflow: hidden;
  }
  .event-img-emoji { position: absolute; font-size: 3rem; opacity: 0.2; }
  .event-img-label { position: relative; z-index: 1; }
  .event-info { padding: 1.4rem; }
  .event-date { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); font-weight: 500; margin-bottom: 0.4rem; }
  .event-info h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
  .event-info p  { font-size: 0.9rem; color: var(--ink-light); margin-bottom: 1rem; }
  .event-location { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--ink-light); margin-bottom: 1rem; }
  .event-actions { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--beige-mid); }
  .gallery-trigger { font-size: 0.78rem; color: var(--orange); font-weight: 500; cursor: pointer; background: none; border: none; font-family: var(--font-body); letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.3rem; }
  .gallery-trigger:hover { text-decoration: underline; }
  .book-link { background: var(--orange); color: var(--white); padding: 0.45rem 1.1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 500; cursor: pointer; border: none; font-family: var(--font-body); transition: var(--transition); }
  .book-link:hover { background: var(--orange-light); }
  .book-link.past { background: var(--beige-dark); color: var(--ink-mid); cursor: default; }

  /* GALLERY MODAL */
  .overlay {
    position: fixed; inset: 0; background: rgba(26,18,8,0.82);
    z-index: 200; display: none; place-items: center;
    backdrop-filter: blur(6px); padding: 1rem;
  }
  .overlay.open { display: grid; }
  .modal-box {
    background: var(--white); border-radius: var(--radius); width: 100%;
    max-width: 820px; max-height: 90vh; overflow-y: auto; position: relative;
  }
  .modal-close-btn {
    position: absolute; top: 1rem; right: 1rem; background: var(--beige-mid);
    border: none; width: 36px; height: 36px; border-radius: 50%;
    cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 10;
  }
  .modal-close-btn:hover { background: var(--beige-dark); }

  /* GALLERY LAYOUT */
  .gallery-header { padding: 2rem 2rem 1rem; }
  .gallery-header h3 { margin-bottom: 0.25rem; }
  .gallery-header .event-date { font-size: 0.78rem; }
  .gallery-photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; padding: 0 2rem; }
  .gallery-photo {
    aspect-ratio: 1; border-radius: 8px; overflow: hidden;
    background: linear-gradient(135deg, var(--orange-pale), var(--beige-mid));
    display: flex; align-items: center; justify-content: center;
    font-style: italic; font-size: 0.75rem;
    color: var(--ink-light); font-family: var(--font-display);
  }
  .gallery-video-section { padding: 1.5rem 2rem 2rem; }
  .gallery-video-section h4 { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
  .video-wrapper { width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; background: var(--ink); }
  .video-wrapper iframe { width: 100%; height: 100%; border: none; }
  .no-video { display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.35); font-size: 0.95rem; height: 100%; }

  /* ARTISTS */
  .artist-search-bar {
    display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; align-items: stretch;
  }
  .artist-search-input-wrap {
    flex: 1; min-width: 220px; position: relative;
    background: var(--white); border: 1.5px solid var(--beige-dark);
    border-radius: 50px; display: flex; align-items: center;
    padding: 0 1.1rem; gap: 0.6rem;
    box-shadow: 0 2px 12px rgba(26,18,8,0.06);
    transition: border-color 0.25s, box-shadow 0.25s;
  }
  .artist-search-input-wrap:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,96,10,0.12), 0 2px 12px rgba(26,18,8,0.06);
  }
  .artist-search-icon { color: var(--ink-light); flex-shrink: 0; }
  .artist-search-input-wrap input {
    flex: 1; border: none; background: transparent; outline: none;
    font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
    padding: 0.75rem 0;
  }
  .artist-search-input-wrap input::placeholder { color: var(--ink-light); }

  .artist-select-wrap {
    position: relative; display: flex; align-items: center;
    background: var(--white); border: 1.5px solid var(--beige-dark);
    border-radius: 50px; padding: 0 1.1rem 0 1.25rem;
    box-shadow: 0 2px 12px rgba(26,18,8,0.06);
    transition: border-color 0.25s, box-shadow 0.25s; cursor: pointer;
    min-width: 190px;
  }
  .artist-select-wrap:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,96,10,0.12), 0 2px 12px rgba(26,18,8,0.06);
  }
  .artist-select-icon {
    position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
    color: var(--ink-light); pointer-events: none;
  }
  .artist-select-wrap select {
    appearance: none; -webkit-appearance: none; border: none; background: transparent;
    outline: none; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
    cursor: pointer; padding: 0.75rem 2rem 0.75rem 0; width: 100%;
  }
  .artists-empty {
    text-align: center; padding: 3rem 0; color: var(--ink-light);
    font-style: italic; font-size: 1rem;
  }
  .artist-social-follow {
    display: flex; align-items: center; justify-content: center;
    gap: 1.25rem; margin-top: 3.5rem;
  }
  .artist-social-label {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--ink-light);
  }
  .artist-social-icons { display: flex; gap: 0.75rem; }
  .follow-icon {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--beige-dark); color: var(--ink-mid);
    transition: var(--transition); background: var(--white);
  }
  .follow-icon:hover { opacity: 0.88; }
  .follow-tiktok:hover    { background: #000;     border-color: #000;     color: #fff; }
  .follow-instagram:hover { background: #E1306C;  border-color: #E1306C;  color: #fff; }
  .follow-youtube:hover   { background: #FF0000;  border-color: #FF0000;  color: #fff; }
  .follow-facebook:hover  { background: #1877F2;  border-color: #1877F2;  color: #fff; }
  .follow-x:hover         { background: #000;     border-color: #000;     color: #fff; }

  .artists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .artist-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--beige-dark); cursor: pointer; transition: var(--transition); position: relative;
  }
  .artist-card:hover { box-shadow: 0 8px 24px rgba(26,18,8,0.1); }
  .artist-card:hover .artist-overlay { opacity: 1; }
  .artist-photo {
    height: 220px; background: linear-gradient(160deg, var(--beige-mid) 0%, var(--beige-dark) 100%);
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
  }
  .artist-initials {
    width: 80px; height: 80px; border-radius: 50%; background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white);
  }
  .artist-overlay {
    position: absolute; inset: 0; background: rgba(26,18,8,0.72);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); gap: 0.75rem;
  }
  .social-icon {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 0.75rem; font-weight: 600; transition: var(--transition); text-decoration: none;
  }
  .social-icon:hover { background: var(--orange); border-color: var(--orange); }
  .artist-info { padding: 1.25rem; }
  .artist-info h3 { margin-bottom: 0.2rem; font-size: 1.1rem; }
  .artist-medium { font-size: 0.8rem; color: var(--orange); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.6rem; }
  .artist-info p { font-size: 0.88rem; line-height: 1.55; }
  .card-social-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.5); color: #fff;
    background: rgba(255,255,255,0.12); transition: var(--transition); text-decoration: none;
  }
  .card-social-icon[data-platform="instagram"]:hover { background: #E1306C; border-color: #E1306C; }
  .card-social-icon[data-platform="facebook"]:hover  { background: #1877F2; border-color: #1877F2; }
  .card-social-icon[data-platform="tiktok"]:hover    { background: #000;    border-color: #000; }
  .card-social-icon[data-platform="linkedin"]:hover  { background: #0A66C2; border-color: #0A66C2; }
  .card-social-icon[data-platform="youtube"]:hover   { background: #FF0000; border-color: #FF0000; }
  .card-social-icon[data-platform="website"]:hover   { background: #4A3C2A; border-color: #4A3C2A; }

  /* ARTIST BIO MODAL */
  .bio-modal-box {
    background: var(--white); border-radius: var(--radius); width: 100%; max-width: 600px;
    max-height: 90vh; overflow-y: auto; position: relative; animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .bio-modal-header {
    background: linear-gradient(135deg, var(--ink) 0%, #2d2010 100%);
    padding: 2.5rem 2rem 2rem; display: flex; gap: 1.5rem; align-items: flex-start;
  }
  .bio-modal-avatar {
    width: 80px; height: 80px; flex-shrink: 0; border-radius: 50%;
    background: var(--orange); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white);
  }
  .bio-modal-header-info h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.25rem; }
  .bio-modal-medium { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange-light); margin-bottom: 1rem; }
  .bio-modal-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .bio-modal-body { padding: 2rem; }
  .bio-modal-body h4 { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; margin-top: 1.5rem; }
  .bio-modal-body h4:first-child { margin-top: 0; }
  .bio-modal-body p { font-size: 0.95rem; line-height: 1.7; color: var(--ink-mid); }
  .products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; margin-top: 0.75rem; }
  .product-thumb {
    aspect-ratio: 1; background: var(--beige-mid); border-radius: 8px; border: 1px solid var(--beige-dark);
    display: flex; align-items: center; justify-content: center; font-size: 0.72rem;
    color: var(--ink-light); font-style: italic; font-family: var(--font-display); text-align: center;
    overflow: hidden; padding: 0;
  }
  .product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .bio-modal-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.5rem; }

  /* SIGNUP SECTION */
  #signup {
    background: var(--ink); color: var(--white);
    background-image: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,96,10,0.08), transparent);
  }
  .signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .signup-form-area {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 2.5rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); padding: 0.75rem 1rem; font-family: var(--font-body); font-size: 0.95rem;
    border-radius: 8px; outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
  .form-group select option { background: #2a1f10; }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-success { display: none; background: rgba(74,103,65,0.2); border: 1px solid #4a6741; border-radius: 8px; padding: 1rem 1.2rem; color: #8fbc7e; font-size: 0.9rem; margin-top: 1rem; text-align: center; }

  /* VENUES */
  .venues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .venue-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--beige-dark); transition: var(--transition);
  }
  .venue-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,18,8,0.12); }
  .venue-thumb {
    height: 160px; background: linear-gradient(135deg, var(--orange-pale), var(--beige-mid));
    display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
    border-bottom: 1px solid var(--beige-dark);
  }
  .venue-modal-cover {
    width: 100%; height: 220px;
    background: linear-gradient(135deg, var(--orange-pale), var(--beige-mid)) center/cover no-repeat;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .venue-body { padding: 1.4rem; }
  .venue-body h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
  .venue-city { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); font-weight: 500; margin-bottom: 0.75rem; }
  .venue-desc { font-size: 0.88rem; color: var(--ink-light); line-height: 1.6; }

  /* PARTNERS CAROUSEL */
  .partners-carousel { overflow: hidden; width: 100%; }
  .partners-track {
    display: flex; gap: 2rem; width: max-content;
    animation: scrollPartners 22s linear infinite;
    min-width: 100%;
    justify-content: center;
  }
  .partners-track:hover { animation-play-state: paused; }
  @keyframes scrollPartners { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .partner-logo {
    background: var(--white); border: 1px solid var(--beige-dark); border-radius: 10px;
    padding: 1rem 2rem; white-space: nowrap; font-weight: 500; color: var(--ink-mid);
    font-size: 0.9rem; flex-shrink: 0; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
  }
  .partner-logo:hover { border-color: var(--orange); color: var(--orange); }
  .partners-track > a { flex-shrink: 0; text-decoration: none; }
  .partners-track > a .partner-logo { width: 100%; }

  /* NEWSLETTER */
  #newsletter {
    padding: 6rem 0; background: var(--ink); color: var(--white); text-align: center;
    background-image: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,96,10,0.07), transparent);
  }
  #newsletter h2 { color: var(--white); margin-bottom: 1rem; }
  #newsletter > .container > p { color: rgba(255,255,255,0.6); max-width: 460px; margin: 0 auto 2.5rem; }
  .newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; border-radius: 50px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
  .newsletter-form input { flex: 1; background: none; border: none; color: var(--white); padding: 1rem 1.5rem; font-family: var(--font-body); font-size: 0.95rem; outline: none; }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
  .newsletter-form button { background: var(--orange); color: var(--white); border: none; padding: 1rem 1.8rem; font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; cursor: pointer; letter-spacing: 0.05em; transition: var(--transition); white-space: nowrap; }
  .newsletter-form button:hover { background: var(--orange-light); }
  .nl-success { display: none; background: rgba(74,103,65,0.2); border: 1px solid #4a6741; border-radius: 8px; padding: 0.75rem 1.5rem; color: #8fbc7e; font-size: 0.88rem; margin-top: 1rem; max-width: 380px; margin-left: auto; margin-right: auto; }

  /* FOOTER */
  footer { background: #0e0b06; border-top: 1px solid rgba(255,255,255,0.07); padding: 4rem 0 2rem; color: rgba(255,255,255,0.6); }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
  .footer-brand p { font-size: 0.9rem; margin-top: 1rem; line-height: 1.65; color: rgba(255,255,255,0.45); }
  .footer-col h4 { font-family: var(--font-display); font-size: 1rem; color: var(--white); margin-bottom: 1.2rem; }
  .footer-social-icons { display: flex; flex-wrap: wrap; gap: 0.6rem; }
  .footer-social-icons .follow-icon { width: 38px; height: 38px; border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); }
  .footer-social-icons .follow-icon:hover { border-color: transparent; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .footer-col a:hover { color: var(--orange-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
  .admin-link { font-size: 0.8rem; color: rgba(255,255,255,0.3); cursor: pointer; transition: color 0.2s; }
  .admin-link:hover { color: var(--orange-light); }

  /* TOAST */
  .toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--ink); border: 1px solid var(--orange); color: var(--white); padding: 0.9rem 1.5rem; border-radius: 10px; font-size: 0.88rem; z-index: 999; transform: translateY(100px); opacity: 0; transition: all 0.3s; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .toast.show { transform: translateY(0); opacity: 1; }

  /* MOBILE MENU */
  .mobile-menu {
    display: none;
    position: fixed; top: 73px; left: 0; right: 0; z-index: 99;
    background: rgba(245,239,230,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--beige-dark);
    padding: 1.5rem 2rem 2rem;
    flex-direction: column; gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(26,18,8,0.12);
    transform: translateY(-10px); opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .mobile-menu.open {
    display: flex; opacity: 1; transform: translateY(0);
  }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .mobile-menu ul li { border-bottom: 1px solid var(--beige-dark); }
  .mobile-menu ul li:last-child { border-bottom: none; }
  .mobile-menu ul a { display: block; padding: 0.9rem 0; font-size: 1rem; font-weight: 500; color: var(--ink-mid); letter-spacing: 0.04em; }
  .mobile-menu ul a:hover { color: var(--orange); }
  .mobile-menu .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

  /* HAMBURGER OPEN STATE */
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* RESPONSIVE — 900px */
  @media(max-width: 900px) {
    .section { padding: 4.5rem 0; }
    #hero { grid-template-columns: 1fr; padding-top: 7rem; padding-bottom: 4rem; text-align: center; }
    .hero-visual { display: none; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; gap: 2rem; }
    .signup-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .events-header { flex-direction: column; align-items: flex-start; }
  }

  /* RESPONSIVE — 640px */
  @media(max-width: 640px) {
    .container { padding: 0 1.25rem; }
    .section { padding: 3.5rem 0; }
    nav { padding: 1rem 1.25rem; }

    /* Nav */
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-cta .btn { display: none; }

    /* Hero */
    #hero { padding: 6rem 1.25rem 3rem; gap: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

    /* Grids → single column */
    .events-grid   { grid-template-columns: 1fr; }
    .artists-grid  { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .venues-grid   { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr; }
    .form-row      { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }

    /* Gallery modal */
    .gallery-photo-grid { grid-template-columns: repeat(2,1fr); padding: 0 1rem; }
    .gallery-header      { padding: 1.5rem 1rem 0.75rem; }
    .gallery-video-section { padding: 1rem 1rem 1.5rem; }
    .modal-box { border-radius: 12px 12px 0 0; position: fixed; bottom: 0; max-height: 85vh; }
    .overlay { align-items: flex-end; padding: 0; }

    /* Bio modal */
    .bio-modal-box { border-radius: 12px 12px 0 0; position: fixed; bottom: 0; max-height: 90vh; }
    .bio-modal-header { flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem 1.5rem; }
    .bio-modal-socials { justify-content: center; }
    .bio-modal-body { padding: 1.25rem; }

    /* Signup form */
    .signup-form-area { padding: 1.5rem; }

    /* Newsletter */
    .newsletter-form { flex-direction: column; border-radius: var(--radius); overflow: visible; border: none; background: none; gap: 0.75rem; }
    .newsletter-form input { border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; background: rgba(255,255,255,0.05); padding: 1rem 1.5rem; }
    .newsletter-form button { border-radius: 50px; padding: 1rem; }

    /* Toast */
    .toast { left: 1rem; right: 1rem; bottom: 1rem; text-align: center; }
  }

  /* RESPONSIVE — 400px */
  @media(max-width: 400px) {
    .artists-grid { grid-template-columns: 1fr; }
    .hero-stats { justify-content: flex-start; }
    h1 { font-size: 2.6rem; }
    h2 { font-size: 1.9rem; }
  }

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 2rem; display: none;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
.cookie-banner.show { display: block; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-content p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin: 0; max-width: 680px; }
.cookie-content p strong { color: var(--white); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-decline { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.25); font-size: 0.85rem; padding: 0.6rem 1.4rem; }
.cookie-decline:hover { color: var(--white); border-color: var(--white); background: transparent; }
@media(max-width: 640px){
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ====== EMAIL POPUP ====== */
.nl-popup-backdrop {
  position: fixed; inset: 0; z-index: 9997;
  background: rgba(26, 18, 8, 0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.nl-popup-box {
  background: var(--white); border-radius: 20px;
  padding: 2.75rem 2.5rem 2.25rem;
  max-width: 440px; width: 100%; position: relative;
  box-shadow: 0 24px 64px rgba(26,18,8,0.22);
  text-align: center;
}
.nl-popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--beige); border: none; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem; color: var(--ink-mid);
  transition: background 0.2s, color 0.2s;
}
.nl-popup-close:hover { background: var(--beige-dark); color: var(--ink); }
.nl-popup-icon {
  font-size: 2.2rem; line-height: 1; margin-bottom: 1rem;
  background: var(--orange-pale); width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.nl-popup-title {
  font-family: var(--font-display); font-size: 1.65rem;
  font-weight: 700; color: var(--ink); margin: 0.5rem 0 0.75rem;
}
.nl-popup-desc {
  color: var(--ink-mid); font-size: 0.95rem; line-height: 1.6;
  margin-bottom: 1.5rem; max-width: 340px; margin-left: auto; margin-right: auto;
}
.nl-popup-form {
  display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 0.75rem;
}
.nl-popup-form input {
  width: 100%; padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--beige-dark); border-radius: 50px;
  background: var(--beige); font-family: var(--font-body);
  font-size: 0.95rem; color: var(--ink); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; text-align: center;
}
.nl-popup-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,96,10,0.12);
}
.nl-popup-form input::placeholder { color: var(--ink-light); }
.nl-popup-form button {
  width: 100%; padding: 0.9rem;
  background: var(--orange); color: var(--white); border: none;
  border-radius: 50px; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.nl-popup-form button:hover { background: var(--orange-light); }
.nl-popup-success {
  display: none; background: rgba(74,103,65,0.12);
  border: 1px solid #4a6741; border-radius: 8px;
  padding: 0.6rem 1rem; color: #5a8750;
  font-size: 0.88rem; margin-bottom: 0.5rem;
}
.nl-popup-fine {
  font-size: 0.75rem; color: var(--ink-light); margin-top: 0.5rem;
}
@media (max-width: 480px) {
  .nl-popup-box { padding: 2rem 1.5rem 1.75rem; }
  .nl-popup-title { font-size: 1.4rem; }
}

/* ====== HONEYPOT ====== */
.hp-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ====== LIGHTBOX ====== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 5, 0.93);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 4px 8px;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}
@media (max-width: 640px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 2rem; }
  .lightbox-img { max-width: 95vw; max-height: 70vh; }
}
