/* Harz Games — gemeinsames Stylesheet für index.html und partner.html */

  :root {
    --forest: #1a2e1a;
    --bark: #3d2b1a;
    --moss: #4a6741;
    --stone: #8a8070;
    --sand: #c9b99a;
    --cream: #f0e8d8;
    --ember: #c4521a;
    --gold: #d4a030;
    --white: #faf6ef;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--forest);
    color: var(--cream);
    font-family: 'Playfair Display', Georgia, serif;
    overflow-x: hidden;
  }

  /* TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
    z-index: 1;
  }

  .hero-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,185,154,0.08);
  }
  .ring:nth-child(1) { width: 300px; height: 300px; }
  .ring:nth-child(2) { width: 500px; height: 500px; border-color: rgba(201,185,154,0.06); }
  .ring:nth-child(3) { width: 700px; height: 700px; border-color: rgba(201,185,154,0.04); }
  .ring:nth-child(4) { width: 1000px; height: 1000px; border-color: rgba(201,185,154,0.03); }
  .ring:nth-child(5) { width: 1400px; height: 1400px; border-color: rgba(201,185,154,0.02); }

  .hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 18vw, 200px);
    line-height: 0.88;
    letter-spacing: 0.02em;
    color: var(--white);
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }

  .hero-title .outline {
    -webkit-text-stroke: 1px var(--sand);
    color: transparent;
  }

  .hero-subtitle {
    font-size: clamp(14px, 2.5vw, 22px);
    font-style: italic;
    color: var(--sand);
    margin-top: 20px;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 32px auto;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
  }

  .hero-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }

  .hero-meta span {
    color: var(--cream);
    margin: 0 12px;
  }

  .hero-cta {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.0s forwards;
  }

  .btn-primary {
    background: var(--ember);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .btn-primary:hover {
    background: var(--gold);
    color: var(--forest);
    transform: translateY(-2px);
  }

  .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(201,185,154,0.4);
    padding: 16px 36px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .btn-secondary:hover {
    border-color: var(--sand);
    color: var(--white);
  }

  .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--stone);
    text-transform: uppercase;
    animation: pulse 2s ease infinite;
  }

  .scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--stone), transparent);
    margin: 8px auto 0;
  }

  /* SECTION BASE */
  section {
    position: relative;
    z-index: 1;
    padding: 100px 20px;
  }

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

  .section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 7vw, 80px);
    line-height: 1;
    color: var(--white);
    margin-bottom: 24px;
  }

  .section-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--sand);
    max-width: 620px;
  }

  /* CONCEPT SECTION */
  .concept {
    background: linear-gradient(180deg, var(--forest) 0%, #0e1f0e 100%);
  }

  .concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
  }

  .concept-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pillar {
    padding: 28px 0;
    border-bottom: 1px solid rgba(201,185,154,0.12);
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .pillar:first-child { border-top: 1px solid rgba(201,185,154,0.12); }

  .pillar-icon {
    font-size: 28px;
    min-width: 40px;
    line-height: 1;
    margin-top: 2px;
  }

  .pillar-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 4px;
  }

  .pillar-desc {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.5;
  }

  /* DISCIPLINES */
  .disciplines {
    background: var(--bark);
    background: linear-gradient(135deg, #2a1a0e 0%, #1a1208 100%);
  }

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

  .disc-category {
    position: relative;
  }

  .disc-category-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(196,82,26,0.3);
  }

  .disc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .disc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(201,185,154,0.08);
    transition: all 0.2s ease;
    cursor: default;
  }

  .disc-item:hover { padding-left: 8px; }
  .disc-item:hover .disc-name { color: var(--white); }

  .disc-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--stone);
    min-width: 20px;
  }

  .disc-name {
    font-size: 16px;
    color: var(--cream);
    transition: color 0.2s;
  }

  .disc-badge {
    margin-left: auto;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    padding: 3px 8px;
    border: 1px solid rgba(201,185,154,0.2);
    color: var(--stone);
    text-transform: uppercase;
  }

  /* BIG SEPARATOR */
  .big-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone), transparent);
    margin: 0 auto;
    max-width: 800px;
    opacity: 0.3;
  }

  /* TICKET SECTION */
  .tickets {
    background: linear-gradient(180deg, #0e1f0e 0%, var(--forest) 100%);
  }

  .ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,185,154,0.1);
    margin-top: 60px;
    clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
  }

  .ticket-card {
    background: #0e1f0e;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
  }

  .ticket-card:hover {
    background: #142814;
    transform: translateY(-4px);
  }

  .ticket-card.featured {
    background: linear-gradient(180deg, #1a3a1a 0%, #0e2a0e 100%);
  }

  .ticket-card.featured::before {
    content: 'BELIEBT';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--forest);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    padding: 4px 16px;
  }

  .ticket-phase {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 16px;
  }

  .ticket-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    color: var(--white);
  }

  .ticket-price sup {
    font-size: 28px;
    vertical-align: top;
    margin-top: 12px;
    display: inline-block;
    color: var(--sand);
  }

  .ticket-desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--stone);
    margin-top: 4px;
    letter-spacing: 0.1em;
  }

  .ticket-perks {
    margin: 28px 0;
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ticket-perks li {
    font-size: 14px;
    color: var(--sand);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .ticket-perks li::before {
    content: '—';
    color: var(--moss);
    font-family: 'IBM Plex Mono', monospace;
  }

  .ticket-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(201,185,154,0.3);
    color: var(--cream);
    padding: 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
  }

  .ticket-btn:hover, .featured .ticket-btn {
    background: var(--ember);
    border-color: var(--ember);
    color: var(--white);
  }

  /* LOCATION */
  .location {
    background: var(--forest);
    text-align: center;
  }

  .location-card {
    display: inline-block;
    border: 1px solid rgba(201,185,154,0.15);
    padding: 48px 60px;
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    background: rgba(255,255,255,0.02);
  }

  .location-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--white);
    letter-spacing: 0.05em;
  }

  .location-sub {
    font-size: 15px;
    font-style: italic;
    color: var(--stone);
    margin-top: 8px;
  }

  .location-coords {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--moss);
    margin-top: 16px;
    letter-spacing: 0.15em;
  }

  /* NEWSLETTER */
  .newsletter {
    background: linear-gradient(180deg, var(--forest) 0%, #0a150a 100%);
    text-align: center;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 40px auto 0;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .newsletter-input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,185,154,0.2);
    border-right: none;
    color: var(--white);
    padding: 16px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
  }

  .newsletter-input:focus { border-color: rgba(201,185,154,0.5); }
  .newsletter-input::placeholder { color: var(--stone); }

  .newsletter-submit {
    background: var(--ember);
    border: none;
    color: var(--white);
    padding: 16px 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .newsletter-submit:hover { background: var(--gold); color: var(--forest); }

  /* FOOTER */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(201,185,154,0.1);
    padding: 40px 20px;
    text-align: center;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.1em;
    color: var(--stone);
    margin-bottom: 12px;
  }

  .footer-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: #3a4a3a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  /* WOOD GRAIN ACCENT */
  .wood-accent {
    height: 4px;
    background: repeating-linear-gradient(
      90deg,
      var(--bark) 0px,
      #5a3820 2px,
      var(--bark) 4px,
      #3d2b1a 8px,
      #6a4530 10px,
      var(--bark) 14px
    );
    opacity: 0.6;
  }

  /* LARGE QUOTE */
  .manifesto {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0e1f0e 0%, #1a2e1a 100%);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .manifesto::before {
    content: '❝';
    position: absolute;
    font-size: 300px;
    color: rgba(255,255,255,0.015);
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
  }

  .manifesto-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 4vw, 36px);
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }

  .manifesto-text em {
    font-style: normal;
    color: var(--gold);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .concept-grid, .disc-layout { grid-template-columns: 1fr; gap: 40px; }
    .ticket-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; clip-path: none; }
    .newsletter-input { border-right: 1px solid rgba(201,185,154,0.2); border-bottom: none; }
    .location-card { padding: 36px 28px; }
  }

  /* HUBSPOT FORM OVERRIDES */
  .hs-form-wrapper {
    max-width: 480px;
    margin: 40px auto 0;
  }
  .hs-form-frame {
    width: 100%;
  }
  .hs-form-wrapper .hs-form input[type="email"],
  .hs-form-wrapper input[type="email"] {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(201,185,154,0.2) !important;
    color: var(--white) !important;
    padding: 16px 20px !important;
    font-family: 'IBM Plex Mono', monospace !important;
    font-size: 13px !important;
    width: 100% !important;
    outline: none !important;
    border-radius: 0 !important;
  }
  .hs-form-wrapper input[type="submit"],
  .hs-form-wrapper .hs-button {
    background: var(--ember) !important;
    border: none !important;
    color: var(--white) !important;
    padding: 16px 24px !important;
    font-family: 'IBM Plex Mono', monospace !important;
    font-size: 11px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: 8px !important;
    border-radius: 0 !important;
    transition: background 0.2s !important;
  }
  .hs-form-wrapper input[type="submit"]:hover,
  .hs-form-wrapper .hs-button:hover {
    background: var(--gold) !important;
    color: var(--forest) !important;
  }
  .hs-form-wrapper .hs-error-msgs,
  .hs-form-wrapper .hs_error_rollup {
    font-family: 'IBM Plex Mono', monospace !important;
    font-size: 11px !important;
    color: var(--ember) !important;
    list-style: none !important;
    margin-top: 6px !important;
  }
  .hs-form-wrapper .submitted-message {
    font-family: 'IBM Plex Mono', monospace !important;
    font-size: 13px !important;
    color: var(--moss) !important;
    text-align: center !important;
    padding: 16px !important;
    border: 1px solid var(--moss) !important;
  }

  /* MODALS */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
  }
  .modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; }
  .modal-box {
    background: #0e1f0e;
    border: 1px solid rgba(201,185,154,0.15);
    max-width: 720px;
    width: 100%;
    padding: 48px;
    position: relative;
    margin: auto;
  }
  .modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--stone);
    font-size: 24px;
    cursor: pointer;
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1;
    transition: color 0.2s;
  }
  .modal-close:hover { color: var(--white); }
  .modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: 0.03em;
  }
  .modal-box h2 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 28px 0 10px;
  }
  .modal-box h2:first-of-type { margin-top: 0; }
  .modal-box p, .modal-box li {
    font-size: 14px;
    color: var(--sand);
    line-height: 1.8;
  }
  .modal-box a { color: var(--cream); }
  .modal-box ul { padding-left: 20px; margin-top: 8px; }
  .modal-box .modal-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--stone);
    text-transform: uppercase;
    margin-top: 4px;
  }
  /* FOOTER LINKS */
  .footer-links {
    margin-top: 16px;
    display: flex;
    gap: 24px;
    justify-content: center;
  }
  .footer-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--cream); }
  /* DSGVO hint under form */
  .dsgvo-hint {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--stone);
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
  }
  .dsgvo-hint a {
    color: var(--stone);
    text-decoration: underline;
    cursor: pointer;
  }
  .dsgvo-hint a:hover { color: var(--cream); }

  /* WHATSAPP BUTTON */
  .wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .wa-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  }
  .wa-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
  }
  .wa-tooltip {
    position: fixed;
    bottom: 38px;
    right: 96px;
    z-index: 500;
    background: #1a2e1a;
    border: 1px solid rgba(201,185,154,0.2);
    color: var(--cream);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 8px 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .wa-btn:hover + .wa-tooltip,
  .wa-wrap:hover .wa-tooltip {
    opacity: 1;
  }
  .wa-wrap {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    display: flex;
    align-items: center;
  }

  /* CUSTOM HUBSPOT FORM */
  .custom-hs-form {
    max-width: 480px;
    margin: 40px auto 0;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
  }
  .form-group label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--stone);
  }
  .form-group input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,185,154,0.2);
    color: var(--white);
    padding: 14px 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
  }
  .form-group input:focus {
    border-color: rgba(201,185,154,0.6);
  }
  .form-group input::placeholder {
    color: rgba(138,128,112,0.5);
  }
  #hs-custom-form button[type="submit"] {
    width: 100%;
    background: var(--ember);
    border: none;
    color: var(--white);
    padding: 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.1s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  #hs-custom-form button[type="submit"]:hover {
    background: var(--gold);
    color: var(--forest);
  }
  #hs-custom-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  @media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
  }

/* =========================================================
   Basis-Ebene — ergänzt 2026 beim Aufräumen von CSS/JS
   ========================================================= */

/* Das hidden-Attribut muss auch gegen display:flex/grid gewinnen */
[hidden] { display: none !important; }

/* Einblenden beim Scrollen — scroll-getrieben, rein in CSS.
   Kein JavaScript, kein IntersectionObserver: Der Inhalt ist im
   Ausgangszustand sichtbar und wird nur dann animiert, wenn der Browser
   view()-Timelines kann UND der Nutzer Bewegung nicht abbestellt hat.
   Faellt beides weg, steht der Text einfach da — er kann nie unsichtbar
   haengenbleiben, wie es bei der Observer-Loesung passieren konnte. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: reveal-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 60%;
    }
    @keyframes reveal-in {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: none; }
    }
  }
}

/* Sichtbarer Fokus für Tastaturbedienung */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Tippziele: mindestens 44px, sonst trifft man auf dem Handy daneben */
.modal-close,
.ticket-btn,
.btn-primary,
.btn-secondary,
footer a {
  min-height: 44px;
}
.modal-close {
  min-width: 44px;
}

/* Lange Wörter dürfen die Seite nicht seitlich aufreißen */
h1, h2, h3, p, li, a {
  overflow-wrap: break-word;
}

/* Wer Bewegung reduziert haben will, bekommt keine */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------
   Mobil nachgeschärft — Desktop-Design bleibt unverändert
   --------------------------------------------------------- */
@media (max-width: 768px) {

  /* iOS Safari zoomt die Seite bei Fokus auf Felder unter 16px.
     16px verhindert den Sprung, ohne dass es auf dem Desktop auffällt. */
  .form-group input,
  .newsletter-input,
  input,
  select,
  textarea {
    font-size: 16px;
  }

  /* 9px ist auf dem Handy nicht mehr lesbar */
  .disc-badge {
    font-size: 11px;
  }

  /* Links in Fließtext und Fußzeile brauchen eine greifbare Fläche */
  .dsgvo-hint a,
  footer a,
  .back-link {
    display: inline-block;
    padding: 15px 2px;
  }
}

/* =========================================================
   Unterseite /partner
   ========================================================= */

/* Kopf ohne die volle Hero-Höhe der Startseite */
.hero--sub {
  min-height: auto;
  padding: 120px 24px 80px;
}
.hero--sub .hero-title {
  font-size: clamp(56px, 12vw, 130px);
}

.back-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.back-link:hover {
  border-bottom-color: var(--gold);
}

/* Vier statt drei Säulen: gleiche Optik, mehr Platz */
.pillars--wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* Rollenliste — wie die Disziplinen, aber mit Fließtext darunter */
.role-list .disc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  row-gap: 10px;
  padding: 26px 0;
}
.role-desc {
  grid-column: 2 / -1;
  font-size: 15px;
  line-height: 1.75;
  color: var(--stone);
}

.role-note {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid rgba(201, 185, 154, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
.role-note p:not(.section-label) {
  font-size: 14px;
  line-height: 1.8;
  color: var(--sand);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 40px 0 24px;
}

@media (max-width: 768px) {
  .hero--sub {
    padding: 90px 20px 60px;
  }
  .pillars--wide {
    grid-template-columns: 1fr;
  }
  .role-list .disc-item {
    grid-template-columns: auto 1fr;
  }
  .role-list .disc-badge {
    grid-column: 2;
    justify-self: start;
  }
  .role-desc {
    grid-column: 1 / -1;
  }
}
