:root{
    /* Palette from reference keyvisual */
    --teal-950:#0b2b31;
    --teal-900:#103a42;
    --teal-800:#17525d;
    --teal-700:#1d6b7a;      /* hero background */
    --teal-600:#2a8497;
    --ochre:#e8a02c;         /* accent yellow/gold */
    --ochre-bright:#ffb839;
    --cream:#f4ecdc;         /* warm off-white */
    --cream-dim:#dfd3ba;
    --red:#c63c29;           /* pepperoni / warning */
    --ink:#111014;

    --max: 1400px;
  }

  *{ box-sizing: border-box; margin: 0; padding: 0; }
  html,body{ background: var(--teal-900); color: var(--cream); }
  body{
    font-family: 'Archivo', system-ui, sans-serif;
    font-size: 18px; line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a{ color: inherit; text-decoration: none; }
  img{ max-width: 100%; display: block; }
  ::selection{ background: var(--ochre); color: var(--teal-900); }

  /* ————— Navigation ————— */
  .nav{
    position: fixed; inset: 0 0 auto 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 34px;
    color: var(--ochre);
    transition: background .3s ease;
  }
  .nav .logo{
    font-family:'Anton'; font-size: 26px; letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ochre-bright);
  }
  .nav nav{ display: flex; gap: 28px; }
  .nav nav a{
    font-family:'Archivo'; font-weight: 500; font-size: 14px;
    text-transform: uppercase; letter-spacing: 2px;
    position: relative; padding: 4px 0;
    color: var(--ochre-bright);
  }
  .nav nav a::after{
    content:""; position:absolute; inset: auto 0 -2px 0; height:1px;
    background: currentColor; transform: scaleX(0); transform-origin: left;
    transition: transform .35s cubic-bezier(.6,.1,.2,1);
  }
  .nav nav a:hover{ color: var(--red); }
  .nav nav a:hover::after{ transform: scaleX(1); }
  .nav .cta{
    border: 1px solid currentColor; padding: 10px 18px; border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--ochre-bright);
    transition: background .25s, color .25s;
  }
  .nav .cta:hover{ background: var(--red); border-color: var(--red); color: var(--cream); }
  .nav .logo{ transition: color .25s; }
  .nav .logo:hover{ color: var(--red); }

  /* Burger + Mobile menu */
  .nav-burger{
    display: none;
    flex-direction: column; justify-content: center; gap: 4px;
    width: 44px; height: 44px; padding: 0;
    background: none; border: 0; cursor: pointer; z-index: 60;
  }
  .nav-burger span{
    display: block; height: 1px; width: 18px; margin: 0 auto;
    background: var(--ochre-bright); border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
  }
  body.menu-open .nav-burger span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
  body.menu-open .nav-burger span:nth-child(2){ opacity: 0; }
  body.menu-open .nav-burger span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }

  .mobile-menu{
    position: fixed; inset: 0; z-index: 55;
    background: var(--teal-950);
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 34px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  body.menu-open .mobile-menu{ opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu nav{ display: flex; flex-direction: column; gap: 8px; }
  .mobile-menu nav a{
    font-family:'Anton'; font-weight: 400; font-size: clamp(34px, 9vw, 56px);
    text-transform: uppercase; letter-spacing: .01em;
    color: var(--cream); text-decoration: none; line-height: 1.1;
    transition: color .2s ease;
  }
  .mobile-menu nav a:hover, .mobile-menu nav a:active{ color: var(--ochre-bright); }

  /* ————— Hero ————— */
  .hero{
    position: relative; min-height: 100vh;
    background: var(--teal-700);
    overflow: hidden;
    display: block;
    padding: 0;
  }
  .hero::after{
    content:""; position: absolute; inset: 0;
    background-image: url("../Angela_Ascher_Header.webp");
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
  }
  .hero::before{
    content:""; position: absolute; inset:0;
    background:
      linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.55) 100%),
      radial-gradient(1200px 600px at 18% 30%, rgba(255,255,255,.06), transparent 60%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-left{
    position: relative; z-index: 2;
    padding: 130px 50px 60px;
    padding-left: 34px;
    display: flex; flex-direction: column; gap: 60px;
    min-height: 100vh;
    max-width: 60%;
  }
  .hero-left > *:last-child{ margin-top: auto; }
  .hero-kicker{
    font-family:'Archivo'; font-weight: 500; font-size: 14px;
    letter-spacing: 2px; text-transform: uppercase; color: var(--ochre);
    display: inline-flex; align-items: center; gap: 10px;
  }

  .hero-title{
    font-family:'Anton'; font-weight: 400;
    font-size: clamp(64px, 9vw, 180px);
    line-height: .88; letter-spacing: -.015em;
    text-transform: uppercase;
    color: var(--cream);
    margin-top: 22px;
    text-wrap: balance;
  }
  .hero-title .ochre{ color: var(--ochre); display: inline-block; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
  .hero-title:hover .ochre{ transform: translateX(10px) rotate(-1.5deg); }
  .hero-title em{
    font-family:'Anton'; font-weight: 300;
    text-transform: uppercase; letter-spacing: -.01em;
    font-size: 1em; color: var(--cream);
  }

  .hero-meta{
    position: absolute;
    top: calc(65% + 20px);
    left: 50px;
    display: flex; gap: 40px; flex-wrap: wrap;
    align-items: baseline;
    z-index: 2;
  }
  .hero-meta .item{ max-width: 320px; }
  .hero-meta .lbl{
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--cream-dim); margin-bottom: 6px; font-weight: 600;
  }
  .hero-meta .val{
    font-family:'Anton'; font-weight: 300;
    font-size: 19px; line-height: 1.45; color: var(--cream);
  }

  .hero-cta-row{
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  }
  .btn{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 26px; border-radius: 999px;
    font-family:'Archivo'; font-weight: 700; font-size: 14px;
    letter-spacing: 2px; text-transform: uppercase;
    border: 1px solid var(--cream); color: var(--cream);
    background: transparent;
    transition: background .25s, color .25s, transform .3s;
    cursor: pointer;
  }
  .btn:hover{ background: var(--cream); color: var(--teal-900); transform: translateY(-2px); }
  .btn.primary{ background: var(--ochre); border-color: var(--ochre); color: var(--teal-900); }
  .btn.primary:hover{ background: var(--ochre-bright); border-color: var(--ochre-bright); color: var(--teal-900); }
  .btn .arrow{ transition: transform .3s }
  .btn:hover .arrow{ transform: translateX(4px) }

  .hero-right{
    display: none;
  }
  .hero-circle-right{
    position: absolute; z-index: 3;
    right: 50px; top: 65%;
  }
  .hero-img{
    position: absolute; inset: 0;
    background-image: url("../Angela_Ascher_Header.webp");
    background-size: cover;
    background-position: center right;
    transform: scale(1.04);
    will-change: transform;
  }
  .hero-img::after{
    content:""; position:absolute; inset: 0;
    background: linear-gradient(90deg, var(--teal-700) 0%, transparent 28%, transparent 72%, rgba(11,43,49,.4) 100%);
    pointer-events: none;
  }

  /* Hero side badge (vertical) */
  .hero-badge{
    position: absolute; left: 18px; top: 50%;
    transform: translateY(-50%) rotate(-90deg); transform-origin: left center;
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--cream-dim); font-weight: 600;
    display: flex; align-items: center; gap: 10px;
    z-index: 3;
  }
  .hero-badge::before{ content:""; width: 40px; height:1px; background: currentColor; }

  .scrolldown{
    position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--cream-dim); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .scrolldown::after{
    content:""; width:1px; height:30px; background: currentColor;
    animation: drop 2.2s ease-in-out infinite;
  }
  @keyframes drop{ 0%{transform: scaleY(0); transform-origin: top} 50%{transform: scaleY(1); transform-origin: top} 50.01%{transform-origin: bottom} 100%{transform: scaleY(0); transform-origin: bottom} }

  /* ————— Marquee ————— */
  .marquee{
    background: var(--cream); color: var(--teal-900);
    padding: 22px 0; overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .marquee-track{
    display: flex; gap: 60px; white-space: nowrap;
    animation: scroll-x 38s linear infinite;
    font-family:'Anton'; font-size: 56px; letter-spacing: .01em;
    text-transform: uppercase; line-height: 1;
  }
  .marquee-track span{ display: inline-flex; align-items: center; gap: 60px; }
  .marquee-track .star{ color: inherit; font-size: 0.75em; line-height: 1; font-family: 'Archivo', sans-serif; font-weight: 800; vertical-align: middle; display: inline-flex; align-items:center; }
  .marquee-track .star .pizza-ico{ width: 48px; height: 48px; display: block; }
  .marquee:hover .marquee-track{ animation-play-state: paused; }
  @keyframes scroll-x{ to{ transform: translateX(-50%); } }

  /* ————— Sections ————— */
  section{ position: relative; padding: 140px 100px; }
  .container{ max-width: var(--max); margin: 0 auto; }
  .section-kicker{
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--ochre); font-weight: 700;
    display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px;
  }

  h2{
    font-family:'Anton'; font-weight: 400;
    font-size: clamp(48px, 7vw, 120px); line-height: .9;
    letter-spacing: -.01em; text-transform: uppercase;
    text-wrap: balance;
  }
  h2 em{
    font-family:'Anton'; font-weight: 300;
    text-transform: none; letter-spacing: -.02em; color: var(--ochre);
  }

  /* ——— About ——— */
  .about{
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px;
    align-items: start;
  }
  .about-portrait{
    position: relative; aspect-ratio: 4/5;
    background: var(--teal-800); overflow: hidden;
    border-radius: 2px;
  }
  .about-portrait img{ width:100%; height:100%; object-fit: cover; object-position: center 20%; }
  .about-portrait-2{ width:100%; aspect-ratio: auto; height: auto; position: sticky; top: 120px; }
  .about-portrait-2 img{ width:100%; height:auto; object-fit: contain; display:block; }
  .about-right{ align-self: start; }
  .about-portrait::after{
    content: none;
  }
  .about-copy p{
    font-size: 18px; line-height: 1.6; margin-top: 20px; color: var(--cream);
  }
  .about-copy p:first-of-type{
    font-family:'Anton'; font-weight: 300;
    font-size: 26px; line-height: 1.45; color: var(--cream);
  }
  .about-facts{
    display: flex; gap: 50px; margin-top: 40px; flex-wrap: wrap;
    padding-top: 32px; border-top: 1px solid rgba(244,236,220,.18);
  }
  .about-facts .f-num{
    font-family:'Anton'; font-size: 48px; color: var(--ochre); line-height: 1;
  }
  .about-facts .f-lbl{
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--cream-dim); margin-top: 6px; font-weight: 600;
  }

  /* ——— Programm (poster feature) ——— */
  .programm{ background: var(--teal-800); }
  .programm .container{
    display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px;
    align-items: center;
  }
  .programm-poster{
    position: relative;
    background: transparent;
    box-shadow: none;
    transform: rotate(-1.5deg);
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
    display: block;
    width: 100%;
    aspect-ratio: 1500 / 2122;
  }
  .programm-poster:hover{ transform: rotate(0deg) scale(1.02); }
  .programm-poster img{ display: block; width: 100%; height: 100%; object-fit: contain; }
  .programm-poster .poster-tag{
    position: absolute; top: 18px; right: 18px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    background: var(--ochre); color: var(--teal-900);
    padding: 8px 12px; font-weight: 700;
  }
  .programm-copy h2{ color: var(--cream); }
  .programm-copy .lede{
    font-family:'Anton'; font-weight: 300;
    font-size: 24px; line-height: 1.5; margin-top: 30px;
    color: var(--cream); max-width: 48ch;
  }
  .programm-copy .details{
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
    margin-top: 40px; padding-top: 30px;
    border-top: 1px solid rgba(244,236,220,.18);
  }
  .programm-copy .details .lbl{
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--ochre); font-weight: 700; margin-bottom: 6px;
  }
  .programm-copy .details .v{
    font-family:'Archivo'; font-weight: 500; font-size: 16px; color: var(--cream);
  }

  /* ——— Tour ——— */
  .tour{ background: var(--teal-900); }
  .tour-head{
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 40px; margin-bottom: 50px; flex-wrap: wrap;
  }
  .tour-list{
    border-top: 1px solid rgba(244,236,220,.18);
  }
  .tour-row > div:last-child{ transform: translateX(-20px); }
  .tour-row{
    display: grid; grid-template-columns: 140px minmax(380px,1.1fr) minmax(240px,1fr) minmax(180px,.8fr) auto;
    gap: 56px; align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(244,236,220,.12);
    position: relative;
    transition: padding .3s ease;
  }
  .tour-row::before{
    content:""; position: absolute; inset: 0;
    background: var(--ochre); transform: scaleX(0); transform-origin: left;
    z-index: -1; transition: transform .5s cubic-bezier(.2,.8,.2,1);
  }
  .tour-row:hover{ padding-left: 30px; color: var(--teal-900); }
  .tour-row:hover::before{ transform: scaleX(1); }
  .tour-row:hover .t-date .m{ color: var(--teal-900); }
  .tour-row:hover .t-venue, .tour-row:hover .t-city, .tour-row:hover .t-note{ color: var(--teal-900); }
  .tour-row:hover .t-cta{ background: var(--teal-900); color: var(--ochre); border-color: var(--teal-900); }

  .t-date{ font-family:'Anton'; font-size: 33px; line-height: 1; }
  .t-date .m{ display:block; font-size: 14px; font-family:'Archivo'; font-weight: 600; color: var(--ochre); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
  .t-venue{ font-family:'Anton'; font-size: 33px; line-height: 1.1; letter-spacing:.01em; transform: translate(-30px, 10px); }
  .t-city{ font-family:'Anton'; font-weight: 300; font-size: 22px; color: var(--cream-dim); margin-left: -80px; transform: translateY(14px); }
  .t-note{ font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: #9de096; font-weight: 500; }
  .t-note.soldout{ color: var(--red); }
  .t-note.ok{ color: var(--ochre); }
  .t-cta{
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border: 1px solid var(--cream); border-radius: 999px;
    font-family:'Archivo'; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
    transition: all .25s;
  }
  .tour-row.soldout .t-cta{ opacity: .5; }

  /* Tour rows: tablet/mid breakpoint — stack into 2-col grid (Date+Info | CTA) */
  @media (max-width: 1380px){
    .tour-row{
      grid-template-columns: 110px 320px 1fr auto;
      grid-template-areas: "date note city cta" "date venue city cta";
      column-gap: 32px;
      row-gap: 4px;
      padding: 28px 20px;
      align-items: center;
    }
    .tour-row .t-date{ grid-area: date; align-self: end; font-size: 28px; line-height: 1; }
    .tour-row .t-venue{ grid-area: venue; transform: none; font-size: 28px; align-self: end; line-height: 1; }
    .tour-row .t-city{ grid-area: city; margin-left: 0; transform: none; font-size: 18px; align-self: end; white-space: nowrap; justify-self: start; text-align: left; line-height: 1; }
    .tour-row .t-note{ grid-area: note; align-self: end; white-space: nowrap; justify-self: start; text-align: left; line-height: 1; padding-bottom: 4px; }
    .tour-row .t-note br{ display: none; }
    .tour-row > div:last-child{ grid-area: cta; align-self: center; transform: none; justify-self: end; }
  }

  .tour-more{ display: flex; justify-content: space-between; margin-top: 40px; align-items: center; flex-wrap: wrap; gap: 20px; }

  /* ——— Videos ——— */
  .videos{ background: var(--teal-950); }
  .videos-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
  .video-card{
    position: relative; aspect-ratio: 3/4; overflow: hidden;
    background: var(--teal-800); cursor: pointer;
    display: block; text-decoration: none; color: inherit;
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
  }
  .video-card:hover{ transform: translateY(-8px); }
  .video-card .thumb{
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-950));
    display: flex; align-items: center; justify-content: center;
  }
  .video-card .thumb .ph-ico{
    font-family:'Anton'; font-size: 80px;
    color: rgba(244,236,220,.15);
  }
  .video-card .play{
    position: absolute; inset: 0; margin: auto;
    width: 82px; height: 82px; border-radius: 50%;
    background: var(--ochre); color: var(--teal-900);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    transition: transform .35s, background .25s;
  }
  .video-card:hover .play{ transform: scale(1.1); background: var(--cream); }
  .video-card .meta{
    position: absolute; left: 20px; right: 20px; bottom: 20px;
    display: flex; justify-content: space-between; align-items: flex-end;
    color: var(--cream);
  }
  .video-card .meta .t{
    font-family:'Anton'; font-size: 22px; text-transform: uppercase; line-height: 1;
  }
  .video-card .meta .d{
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    background: rgba(11,43,49,.7); padding: 6px 10px; color: var(--ochre);
    font-weight: 700;
  }

  /* ——— Presse ——— */
  .presse{ background: var(--cream); color: var(--teal-900); padding: 180px 50px; }
  .presse .section-kicker{ color: var(--red); }
  .presse .quote-stage{
    display: grid; grid-template-columns: 80px 1fr; gap: 30px; margin-top: 20px;
    position: relative; min-height: 340px;
  }
  .presse .qmark{
    font-family:'Anton'; font-size: 200px; line-height: .7;
    color: var(--ochre); font-weight: 300;
  }
  .presse .q{
    position: absolute; inset: 0 0 0 110px;
    opacity: 0; transition: opacity .6s ease;
    display: flex; flex-direction: column; justify-content: center;
  }
  .presse .q.on{ opacity: 1; position: relative; inset: auto; }
  .presse blockquote{
    font-family:'Anton'; font-weight: 300;
    font-size: clamp(32px, 4vw, 58px); line-height: 1.15;
    color: var(--teal-900); max-width: 22ch; letter-spacing: -.01em;
  }
  .presse figcaption{
    margin-top: 30px; font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 700; color: var(--teal-900);
  }
  .presse figcaption small{
    display: block; font-weight: 400; color: rgba(11,43,49,.55);
    margin-top: 5px; letter-spacing: .18em;
  }
  .presse-nav{
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 60px; padding-top: 30px;
    border-top: 1px solid rgba(11,43,49,.2);
  }
  .presse-dots{ display: flex; gap: 8px; }
  .presse-dots span{
    width: 32px; height: 2px; background: rgba(11,43,49,.2); cursor: pointer;
    transition: background .25s;
  }
  .presse-dots span.on{ background: var(--teal-900); }
  .presse-count{
    font-family:'Anton'; font-size: 48px; letter-spacing: .02em;
  }
  .presse-count em{ color: inherit; font-style: normal; }

  /* ——— Fotos ——— */
  .fotos{ background: #0b2b31; padding: 140px 0 140px 0; }
  .fotos .container{ max-width: none; padding: 0 50px; }
  .fotos-head{ max-width: var(--max); margin: 0 auto 60px; }
  .fotos-scroll{
    display: flex; gap: 20px; overflow-x: auto; overflow-y: hidden;
    padding: 0 50px 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .fotos-scroll::-webkit-scrollbar{ height: 6px; }
  .fotos-scroll::-webkit-scrollbar-track{ background: rgba(244,236,220,.08); }
  .fotos-scroll::-webkit-scrollbar-thumb{ background: var(--ochre); }
  .foto{
    flex: 0 0 auto;
    width: 380px; aspect-ratio: 3/4;
    background: var(--teal-800);
    scroll-snap-align: start;
    position: relative; overflow: hidden;
    transition: transform .4s;
  }
  .foto:nth-child(2n){ width: 440px; margin-top: 40px; }
  .foto:nth-child(3n){ width: 340px; aspect-ratio: 4/5; }
  .foto:hover{ transform: translateY(-6px); }
  .foto .ph{
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
    color: rgba(244,236,220,.3);
    font-family:'Anton'; font-size: 22px;
  }
  .foto .cap{
    position: absolute; left: 18px; bottom: 18px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    background: rgba(11,43,49,.6); padding: 6px 10px;
    color: var(--ochre); font-weight: 700;
  }

  /* ——— Social ——— */
  .social{ background: var(--teal-800); }
  .social-grid{
    display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px;
    margin-top: 60px;
  }
  .s-card{
    background: var(--teal-900); padding: 20px;
    border: 1px solid rgba(244,236,220,.1);
    transition: transform .4s, border-color .3s;
  }
  .s-card:hover{ transform: translateY(-6px); border-color: var(--ochre); }
  .s-card .head{
    display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  }
  .s-card .av{
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--ochre); color: var(--teal-900);
    display: flex; align-items: center; justify-content: center;
    font-family:'Anton'; font-size: 15px; letter-spacing: .05em;
  }
  .s-card .name b{ display:block; font-size: 15px; font-weight: 600; }
  .s-card .name small{ font-size: 14px; color: var(--cream-dim); letter-spacing: 2px; text-transform: uppercase; }
  .s-card .pic{
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-950));
    display: flex; align-items: center; justify-content: center;
    color: rgba(244,236,220,.2); font-family:'Anton'; font-size: 20px;
    margin-bottom: 16px;
  }
  .s-card .cap{ font-size: 14px; line-height: 1.5; color: var(--cream-dim); }

  /* ——— Kontakt ——— */
  .kontakt{ background: var(--ochre); color: var(--teal-950); padding: 160px 50px; }
  .kontakt .section-kicker{ color: var(--teal-900); }
  .kontakt h2 em{ color: var(--teal-900); }
  .kontakt .big-mail{
    font-family:'Anton'; font-size: clamp(36px, 6vw, 90px);
    line-height: .95; letter-spacing: -.01em;
    text-transform: uppercase; margin: 40px 0 80px;
    display: inline-block;
    border-bottom: 4px solid var(--teal-900);
    padding-bottom: 6px;
    transition: transform .4s;
  }
  .kontakt .big-mail:hover{ transform: translateX(10px); }
  .kontakt .boxes{
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    padding-top: 40px;
  }
  .kontakt .boxes h3{
    font-family:'Anton'; font-size: 26px; line-height: 23px; text-transform: uppercase;
    margin-bottom: 14px; letter-spacing: .01em;
  }
  .kontakt .boxes p{ font-size: 15px; line-height: 1.55; margin-bottom: 16px; max-width: 40ch; }
  .kontakt .boxes a{ border-bottom: 1px solid var(--teal-900); font-weight: 600; }
  .kontakt .val{ display: block; margin-top: 6px; font-weight: 600; font-size: 16px; }

  /* ——— Footer ——— */
  footer{
    background: var(--teal-950); color: var(--cream);
    padding: 80px 50px 40px;
  }
  .f-top{
    display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 60px;
    padding-bottom: 60px; border-bottom: 1px solid rgba(244,236,220,.15);
  }
  .f-big{
    font-family:'Anton'; font-size: clamp(60px, 9vw, 140px); line-height: .95;
    text-transform: uppercase; letter-spacing: -.01em; color: var(--cream);
  }
  .f-big em{ color: var(--ochre); font-style: normal; }
  .f-col h4{
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--ochre); font-weight: 700; margin-bottom: 18px;
  }
  .f-col a{ display: block; font-size: 15px; margin-bottom: 10px; color: var(--cream); }
  .f-col a:hover{ color: var(--ochre); }
  .f-bottom{
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 30px; flex-wrap: wrap; gap: 20px;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--cream-dim);
  }

  /* ——— Headline flush-left over section content ——— */
  @media (max-width: 1200px){
    .hero-kicker{ margin-left: 0; }
    .hero-title{ margin-left: -5px !important; text-align: left; }
    .f-top{ padding-bottom: 30px; }
  }

  /* ——— Responsive ——— */
  @media (max-width: 1000px){
    .marquee{ padding: 11px 0; }
    .marquee-track{ font-size: 28px; gap: 30px; }
    .marquee-track span{ gap: 30px; }
    .marquee-track .star .pizza-ico{ width: 27px; height: 27px; }
    .hero{ grid-template-columns: 1fr; min-height: auto; }
    .hero-left{ padding: 120px 24px 60px; max-width: 100%; align-items: flex-start; text-align: left; }
    .hero-left > div{ width: 100%; }
    .hero-kicker{ margin-left: 0; }
    .hero-title{ text-align: left; margin-left: 0; }
    .hero-right{ height: 70vh; order: -1; }
    /* .hero-circle-right{ display: none; } */
    .hero-badge{ display: none; }
    .about{ grid-template-columns: 1fr; gap: 40px; }
    .programm-poster{ width: 100% !important; height: auto !important; aspect-ratio: 589.5 / 833.945; }
    .programm-poster img{ width: 100% !important; height: auto !important; }
    .programm-copy p, .programm-copy .lede{ max-width: 100%; }
    .tour-row{
      grid-template-columns: 165px 1fr;
      grid-template-areas:
        "date note"
        "date city"
        "date venue"
        ".    cta";
      column-gap: 24px;
      row-gap: 6px;
      padding: 28px 16px;
      align-items: start;
    }
    .tour-row .t-date{ grid-area: date; align-self: start; font-size: 26px; line-height: 1.1; }
    .tour-row .t-note{ grid-area: note; align-self: end; white-space: normal; justify-self: start; text-align: left; font-size: 13px; padding-bottom: 0; line-height: 1.2; margin-left: 0; }
    .tour-row .t-note br{ display: none; }
    .tour-row .t-venue{ grid-area: venue; transform: none; font-size: 22px; align-self: start; line-height: 1.15; margin-left: 0; }
    .tour-row .t-city{ grid-area: city; margin-left: 0; transform: none; font-size: 28px; align-self: start; white-space: normal; justify-self: start; text-align: left; line-height: 1.15; }
    .tour-row > div:last-child{ grid-area: cta; transform: none; margin-top: 18px; margin-left: 0; justify-self: start; align-self: center; }
    .tour-row:hover{ padding-left: 16px; }
    .videos-grid{ grid-template-columns: 1fr; }
    .kontakt .boxes{ grid-template-columns: 1fr; gap: 30px; }
    .f-top{ grid-template-columns: 1fr; }
    footer{ padding: 80px 24px 40px; }
    section{ padding: 80px 24px; }
    .presse{ padding: 100px 24px; }
    .kontakt{ padding: 100px 24px; }
    .nav{ padding: 18px 20px; }
    .nav nav{ display: none; }
    .nav-burger{ display: flex; }

    /* Anton-Headlines: Zeilenabstand +2% */
    .hero-title{ line-height: .898; }
    h2{ line-height: .918; }
    .kontakt .big-mail{ line-height: .969; }
    .f-big{ line-height: .969; }
    .presse blockquote{ line-height: 1.173; }
  }

  /* ——— Tourdaten: rechte Spalte 50px nach links ——— */
  @media (max-width: 900px){
    .social-grid{ grid-template-columns: 1fr; }
    .programm .container{ grid-template-columns: 1fr; gap: 40px; }
    .tour-row{ grid-template-columns: 115px 1fr; }
    .t-cta{ padding: 6px 11px; font-size: 14px; letter-spacing: 1px; gap: 5px; }
/*    .hero-left > div:first-child{ margin-top: 15vh; }*/
  }

  /* Read-more (nur ≤900px aktiv) */
  .read-more{ display: none; }
  @media (max-width: 900px){
    .clampable.is-clamped{
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .read-more.is-visible{ display: inline-block; }
    .read-more{
      margin-top: 2px; padding: 0;
      background: none; border: 0; cursor: pointer;
      font-family:'Archivo'; font-weight: 500; font-size: 18px; line-height: 1.5;
      letter-spacing: normal; text-transform: none;
      color: var(--ochre); text-decoration: underline; text-underline-offset: 3px;
    }
    .read-more:hover{ color: var(--ochre-bright); }
    .clampable.is-clamped + .read-more.is-visible{ margin-top: 0; }

    /* Inline read-more: Text nach „Durcheinander." abschneiden */
    .clampable-inline.is-collapsed .more-text{ display: none; }
    .read-more-inline{
      background: none; border: 0; padding: 0; cursor: pointer;
      font-family:'Archivo'; font-weight: 500; font-size: 18px; line-height: 1.5;
      color: var(--ochre); text-decoration: underline; text-underline-offset: 3px;
    }
    .read-more-inline:hover{ color: var(--ochre-bright); }
  }
  .read-more-inline{ display: none; }
  @media (max-width: 900px){
    .clampable-inline.is-collapsed .read-more-inline{ display: inline; }
  }

  /* ——— Phones ——— */
  @media (max-width: 560px){
    section{ padding: 64px 18px; }
    .presse{ padding: 72px 18px; }
    .kontakt{ padding: 72px 18px; }
    .nav{ padding: 16px 18px; }
    .logo{ font-size: 26px !important; }

    .marquee-track{ font-size: 20px; gap: 20px; }
    .marquee-track span{ gap: 20px; }

    /* Hero */
    .hero-left{ padding: 100px 18px 48px; }
    .hero-title{ font-size: clamp(42px, 13.5vw, 60px); }
    .hero-right{ height: 56vh; }
    .hero-sub, .hero-left p{ font-size: 15px; }
    .btn.primary.circle-cta{ width: 120px; height: 120px; font-size: 12px; letter-spacing: 1.5px; }

    /* Section headings */
    h2{ font-size: clamp(40px, 12vw, 56px); }

    /* Tour rows: zweispaltig beibehalten, kompaktere Größen */
    .tour-row{
      grid-template-columns: 92px 1fr;
      grid-template-areas:
        "date note"
        "date city"
        "date venue"
        ".    cta";
      column-gap: 14px;
      row-gap: 4px;
      padding: 20px 4px;
    }
    .tour-row .t-date{ font-size: 18px; line-height: 1.05; }
    .tour-row .t-date .m{ font-size: 12px; }
    .tour-row .t-cta{ font-size: 12px; }
    .tour-row .t-note{ font-size: 11px; }
    .tour-row .t-city{ font-size: 19px; }
    .tour-row .t-venue{ font-size: 19px; }
    .tour-row > div:last-child{ margin-top: 12px; }

    /* Presse */
    .presse .quote-stage{ grid-template-columns: 44px 1fr; gap: 16px; min-height: 300px; }
    .presse .qmark{ font-size: 60px; }
    .presse blockquote{ font-size: clamp(26px, 7.5vw, 34px); max-width: 100%; }

    /* Kontakt */
    .kontakt .big-mail{ font-size: clamp(24px, 8vw, 34px); word-break: break-word; margin: 28px 0 56px; }

    /* Footer */
    .f-big{ font-size: clamp(44px, 13vw, 64px); }
    footer{ padding: 60px 18px 32px; }
  }

  .btn.circle-cta{
    width: 170px; height: 170px; border-radius: 50%;
    padding: 0; display: inline-flex; align-items: center; justify-content: center;
    text-align: center; line-height: 1.15;
    font-family:'Archivo'; font-weight: 700; text-transform: uppercase;
    font-size: 14px; letter-spacing: 2px;
  }
  @keyframes ctaPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,184,57,.55); }
    50% { transform: scale(1.06); box-shadow: 0 0 0 18px rgba(255,184,57,0); }
  }
  .btn.primary.circle-cta:hover{ animation: ctaPulse 1.1s ease-in-out infinite; transform: none; }
  .btn.circle-cta .inner{ display: block; }
  .btn.circle-cta .arrow{ display: inline-block; margin-left: 4px; }
  .not-italic-caps{ font-style: normal; text-transform: uppercase; letter-spacing: 2px; }

  /* Global: no italics anywhere */
  em, i, cite, dfn, var, address { font-style: normal !important; }
  *, *::before, *::after { font-style: normal !important; }
