/* ticket-studio.de: navy, cream and amber — the app's own colours. No font and no script from elsewhere. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0b1d2a; --bg2: #102838; --ink: #f4efe6; --muted: rgba(244, 239, 230, 0.72); --soft: rgba(244, 239, 230, 0.5);
  --line: rgba(244, 239, 230, 0.14); --panel: rgba(244, 239, 230, 0.06); --accent: #f1c155; --green: #5fd38a; color-scheme: dark;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: linear-gradient(180deg, var(--bg2), var(--bg) 40%); color: var(--ink); -webkit-font-smoothing: antialiased; min-height: 100vh; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.skip { position: absolute; left: -999px; top: 8px; padding: 8px 14px; background: var(--accent); color: #000; border-radius: 8px; z-index: 50; }
.skip:focus { left: 8px; }

.top { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; }
.brand img { border-radius: 9px; }
.top nav { display: flex; gap: 22px; align-items: center; font-size: 0.92rem; }
.top nav a { text-decoration: none; color: var(--muted); }
.top nav a:hover, .top nav a:focus-visible { color: var(--ink); }
.top nav .lang { padding-left: 22px; border-left: 1px solid var(--line); }

main { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.kicker { font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; font-weight: 700; margin-bottom: 22px; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.lead { color: var(--muted); font-size: 1.15rem; margin-top: 20px; max-width: 34em; }
.quiet { color: var(--soft); font-size: 0.9rem; }
.link { color: var(--accent); text-decoration: none; }
.link:hover { text-decoration: underline; }

.hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr); gap: 48px; align-items: center; padding: 40px 0 70px; }
.hero__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.hero__price { color: var(--muted); font-weight: 600; }
.hero__pad img { border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border-radius: 999px; background: var(--accent); color: #0b1d2a; font-weight: 700; text-decoration: none; }
.button--big { min-height: 56px; padding: 0 30px; font-size: 1.05rem; }
.button--soon { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
a.button:hover, a.button:focus-visible { filter: brightness(1.08); }

.section { padding: 56px 0 0; }
.section--text { max-width: 760px; padding-bottom: 40px; }
.section--text h1 { margin-bottom: 8px; }
.section--text h2 { font-size: 1.25rem; margin: 30px 0 8px; }
.section--text p { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.card { padding: 26px; border-radius: 22px; background: var(--panel); border: 1px solid var(--line); }
.card p { color: var(--muted); font-size: 0.98rem; }
.card__icon { width: 30px; height: 30px; color: var(--accent); margin-bottom: 14px; }

.shots { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 20px; }
.shots figure { flex: none; width: 250px; scroll-snap-align: center; }
.shots img { border-radius: 30px; border: 6px solid #071521; box-shadow: 0 30px 60px -24px #000; }
.shots figcaption { margin-top: 10px; text-align: center; font-size: 0.9rem; color: var(--muted); }

.section--price .price { max-width: 620px; margin: 0 auto; text-align: center; padding: 40px 28px; border-radius: 30px; background: linear-gradient(160deg, rgba(241, 193, 85, 0.16), rgba(244, 239, 230, 0.04)); border: 1px solid rgba(241, 193, 85, 0.4); }
.price__number { font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 800; letter-spacing: -0.04em; color: var(--accent); line-height: 1; margin: 6px 0 16px; }
.price p { color: var(--muted); margin-bottom: 22px; }
.price .quiet { margin: 16px 0 0; }

.faq { max-width: 760px; }
.faq details { border-top: 1px solid var(--line); padding: 16px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 10px; color: var(--muted); }
.section + .faq, .section .faq + p { margin-top: 18px; }

.foot { width: min(1120px, calc(100% - 40px)); margin: 70px auto 0; padding: 26px 0 40px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.88rem; color: var(--soft); }
.foot nav { display: flex; gap: 20px; flex-wrap: wrap; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--ink); }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 20px; }
  .top nav { gap: 16px; }
  .top nav .lang { padding-left: 16px; }
}
