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

    :root {
      --ink:       #1a1410;
      --cream:     #f5f0e8;
      --warm:      #ede5d4;
      --gold:      #b8860b;
      --gold-lt:   #d4a843;
      --rust:      #8b3a1f;
      --rust-lt:   #c0562e;
      --muted:     #7a6e5f;
      --white:     #fdfaf5;
      --serif:     'Playfair Display', Georgia, serif;
      --body:      'Source Serif 4', Georgia, serif;
      --mono:      'DM Mono', monospace;
    }

	html { scroll-behavior: smooth; }

    body {
      background: var(--ink);
      color: var(--cream);
      font-family: var(--body);
      font-size: 18px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* ── GRAIN 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.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.35;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, rgba(26,20,16,0.95) 0%, transparent 100%);
    }
    .nav-name {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-lt);
    }
    .nav-cta {
      font-family: var(--mono);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      border: 1px solid rgba(212,168,67,0.5);
      padding: 0.5rem 1.2rem;
      transition: all 0.3s;
    }
    .nav-cta:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--ink);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 3rem 5rem;
      overflow: hidden;
    }

    /* Warm gradient background with texture */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(139,58,31,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(184,134,11,0.12) 0%, transparent 50%),
        linear-gradient(160deg, #0d0b08 0%, #1a1410 40%, #231810 70%, #1a1410 100%);
    }

    /* Decorative circle/spotlight */
    .hero-spotlight {
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      top: -100px;
      right: -80px;
      background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Large italic background text */
    .hero-ghost {
      position: absolute;
      bottom: -0.1em;
      right: -0.02em;
      font-family: var(--serif);
      font-style: italic;
      font-weight: 900;
      font-size: clamp(8rem, 18vw, 22rem);
      color: transparent;
      -webkit-text-stroke: 1px rgba(184,134,11,0.12);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .hero-tag {
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .hero-tag::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold-lt);
    }

    h1 {
      font-family: var(--serif);
      font-size: clamp(3.2rem, 7vw, 7rem);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--cream);
      margin-bottom: 0.2em;
    }
    h1 em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .hero-subtitle {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      color: rgba(245,240,232,0.65);
      margin-bottom: 2.5rem;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-primary {
      display: inline-block;
      font-family: var(--mono);
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1rem 2.4rem;
      background: var(--rust-lt);
      color: var(--white);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: translateX(-101%);
      transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    }
    .btn-primary:hover::after { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }

    .btn-secondary {
      font-family: var(--mono);
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      color: rgba(245,240,232,0.55);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.2s;
    }
    .btn-secondary:hover { color: var(--gold-lt); }
    .btn-secondary svg { width: 16px; height: 16px; }

    /* ── DATE STRIP ── */
    .date-strip {
      background: rgba(184,134,11,0.1);
      border-top: 1px solid rgba(184,134,11,0.25);
      border-bottom: 1px solid rgba(184,134,11,0.25);
      padding: 1rem 3rem;
      display: flex;
      align-items: center;
      gap: 3rem;
      overflow-x: auto;
    }
    .date-item {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .date-num {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold-lt);
      line-height: 1;
    }
    .date-info { line-height: 1.3; }
    .date-venue {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .date-place {
      font-size: 0.95rem;
      color: var(--cream);
      font-weight: 300;
    }
    .date-sep {
      width: 1px;
      height: 40px;
      background: rgba(184,134,11,0.25);
      flex-shrink: 0;
    }

    /* ── SECTIONS ── */
    section { padding: 2rem 3rem; }

    /* ── VOORSTELLING ── */
    .about {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .section-label {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(184,134,11,0.3);
      max-width: 60px;
    }

    h2 {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--cream);
      margin-bottom: 1.5rem;
    }
    h2 em { font-style: italic; color: var(--gold-lt); }

    .about-text p {
      color: rgba(245,240,232,0.7);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1.2rem;
      font-weight: 300;
    }
    .about-text p strong {
      color: var(--cream);
      font-weight: 400;
    }

    /* portrait placeholder */
    .about-visual {
      position: relative;
    }
    .portrait-frame {
      aspect-ratio: 3/4;
      background: linear-gradient(135deg, #2a1e14 0%, #1a1410 100%);
      position: relative;
      overflow: hidden;
    }
    .portrait-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 30%, rgba(139,58,31,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(184,134,11,0.15) 0%, transparent 50%);
    }
    .portrait-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }
    .portrait-icon {
      width: 80px;
      height: 80px;
      border: 1px solid rgba(184,134,11,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(184,134,11,0.4);
    }
    .portrait-note {
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(184,134,11,0.35);
      text-align: center;
    }
    .portrait-border {
      position: absolute;
      top: -12px;
      left: -12px;
      right: 12px;
      bottom: 12px;
      border: 1px solid rgba(184,134,11,0.2);
      pointer-events: none;
    }

    /* ── CONCERT INFO ── */
    .concert-section {
      background: rgba(255,255,255,0.02);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .concert-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .concert-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid rgba(184,134,11,0.2);
      margin-top: 3rem;
    }
    .concert-card {
      padding: 2.5rem;
      border-right: 1px solid rgba(184,134,11,0.15);
      transition: background 0.3s;
    }
    .concert-card:last-child { border-right: none; }
    .concert-card:hover { background: rgba(184,134,11,0.04); }
    .concert-card-label {
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .concert-card-value {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }
    .concert-card-sub {
      font-size: 0.9rem;
      color: var(--muted);
      font-weight: 300;
    }

    /* ── TICKETS ── */
    .tickets-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .tickets-inner h2 { text-align: center; margin-bottom: 0.5rem; }
    .tickets-inner .lead {
      font-size: 1.1rem;
      color: rgba(245,240,232,0.6);
      font-style: italic;
      margin-bottom: 3rem;
      font-weight: 300;
    }

    .ticket-box {
      border: 1px solid rgba(184,134,11,0.35);
      padding: 3rem;
      margin-bottom: 2rem;
      position: relative;
      background: rgba(184,134,11,0.04);
      transition: all 0.3s;
    }
    .ticket-box:hover {
      background: rgba(184,134,11,0.08);
      border-color: rgba(184,134,11,0.6);
    }
    .ticket-box-label {
      position: absolute;
      top: -0.65em;
      left: 2.5rem;
      background: var(--ink);
      padding: 0 0.8rem;
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .ticket-price {
      font-family: var(--serif);
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--cream);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .ticket-price-note {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }
    .ticket-features {
      list-style: none;
      margin-bottom: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .ticket-features li {
      font-size: 0.95rem;
      color: rgba(245,240,232,0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
    }
    .ticket-features li::before {
      content: '—';
      color: var(--gold);
      font-family: var(--mono);
    }

    .btn-ticket {
      display: inline-block;
      font-family: var(--mono);
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1.1rem 3rem;
      background: var(--rust-lt);
      color: var(--white);
      cursor: pointer;
      border: none;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .btn-ticket::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: translateX(-101%);
      transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    }
    .btn-ticket:hover::after { transform: translateX(0); }
    .btn-ticket span { position: relative; z-index: 1; }

    .ticket-note {
      font-size: 0.85rem;
      color: rgba(245,240,232,0.35);
      font-style: italic;
      margin-top: 1.5rem;
    }

    /* ── QUOTE / SFEER ── */
    .quote-section {
      padding: 5rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .quote-section::before {
      content: '\201C';
      position: absolute;
      top: -0.1em;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--serif);
      font-size: 20rem;
      color: rgba(184,134,11,0.05);
      line-height: 1;
      pointer-events: none;
    }
    blockquote {
      position: relative;
      max-width: 750px;
      margin: 0 auto;
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(1.4rem, 3vw, 2.1rem);
      font-weight: 400;
      line-height: 1.45;
      color: rgba(245,240,232,0.85);
    }
    blockquote span {
      color: var(--gold-lt);
    }

    /* ── PRAKTISCH ── */
    .info-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 4rem 6rem;
    }
    .info-block h3 {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 1rem;
      padding-bottom: 0.7rem;
      border-bottom: 1px solid rgba(184,134,11,0.2);
    }
    .info-block p, .info-block li {
      font-size: 0.95rem;
      color: rgba(245,240,232,0.6);
      font-weight: 300;
      line-height: 1.7;
    }
    .info-block ul { list-style: none; }
    .info-block ul li {
      padding: 0.3rem 0;
      display: flex;
      gap: 0.8rem;
    }
    .info-block ul li::before {
      content: '›';
      color: var(--gold);
      font-family: var(--mono);
      flex-shrink: 0;
    }
    .info-block a {
      color: var(--gold-lt);
      text-decoration: none;
    }
    .info-block a:hover { text-decoration: underline; }

    /* ── FOOTER ── */
    footer {
      padding: 1rem;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-name {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold-lt);
    }
    .footer-copy {
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .footer-links {
      display: flex;
      gap: 1.5rem;
    }
    .footer-links a {
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold-lt); }

#shop-frame iframe {
  background: transparent !important;
  border-radius: 4px;
}

#shop-frame {
  background: transparent !important;
}

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-tag    { animation: fadeUp 0.7s 0.1s both; }
    h1           { animation: fadeUp 0.7s 0.25s both; }
    .hero-subtitle { animation: fadeUp 0.7s 0.4s both; }
    .hero-actions  { animation: fadeUp 0.7s 0.55s both; }

/* Reset de buitenste date-strip die Joomla creëert */
.date-strip:has(> .mod-custom) {
  background: none;
  border: none;
  padding: 0;
  display: block;
}

/* Geef de mod-custom wrapper geen eigen layout */
.date-strip .mod-custom {
  display: contents;
}

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .hero { padding: 0 1.5rem 4rem; }
      .date-strip { padding: 1rem 1.5rem; gap: 1.5rem; }
      section { padding: 4rem 1.5rem; }
      .about { grid-template-columns: 1fr; gap: 3rem; }
      .about-visual { order: -1; max-width: 320px; }
      .concert-grid { grid-template-columns: 1fr; }
      .concert-card { border-right: none; border-bottom: 1px solid rgba(184,134,11,0.15); }
      .concert-card:last-child { border-bottom: none; }
      .info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      footer { flex-direction: column; text-align: center; }
    }

.hero .about-visual {
  position: absolute;
  right: 12rem;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  z-index: 2;
}