@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 300 700; font-display: swap; src: url("/static/fonts/hanken-grotesk-latin-ext.woff2") format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 300 700; font-display: swap; src: url("/static/fonts/hanken-grotesk-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/* Busch · Messetermin — design system
   Direction: deep navy + light glass tiles + one red accent (Busch), Hanken Grotesk,
   rounded containers, cinematic hero, soft reveals. */
:root {
  --navy: #0c1a4b;
  --navy-2: #13246a;
  --navy-deep: #07123a;
  --ink: #0f172a;
  --text: #1f2937;
  --text-2: #4b5563;
  --muted: #7c8595;
  --line: #e3e9f2;
  --tile: #e9eff8;
  --tile-2: #dde6f3;
  --bg: #f4f6fa;
  --white: #ffffff;
  --red: #e2001a;
  --red-2: #c30016;
  --green: #15803d;
  --r-xl: 30px;
  --r-lg: 22px;
  --r-md: 16px;
  --font: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, .8, .26, 1);
  --shadow-lg: 0 30px 70px -30px rgba(12, 26, 75, .45);
  --shadow-md: 0 16px 40px -24px rgba(12, 26, 75, .35);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 .5rem; font-weight: 400; letter-spacing: -.025em; line-height: 1.04; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6.2vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; letter-spacing: -.01em; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin: 0 0 1rem; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.eyebrow.light { color: #9fb4ff; }
.lead { font-size: 1.12rem; color: var(--text-2); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* pills */
.pill { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: 999px; font-weight: 600; font-size: .98rem; text-decoration: none; border: 1px solid transparent; cursor: pointer; font-family: inherit; line-height: 1; transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s; white-space: nowrap; }
.pill:hover { transform: translateY(-2px); }
.pill.red { background: var(--red); color: #fff; box-shadow: 0 10px 24px -12px rgba(226, 0, 26, .7); }
.pill.red:hover { background: var(--red-2); }
.pill.frost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .28); backdrop-filter: blur(10px); }
.pill.frost:hover { background: rgba(255, 255, 255, .2); }
.pill.navy { background: var(--navy); color: #fff; }
.pill.navy:hover { background: var(--navy-2); }
.pill.outline { background: transparent; color: var(--navy); border-color: #c7d2e6; }
.pill.outline:hover { border-color: var(--navy); }
.pill.sm { padding: 9px 16px; font-size: .88rem; }
.pill svg { width: 16px; height: 16px; }

/* reveal */
[data-rv] { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-rv].in { opacity: 1; transform: none; }
[data-rv="2"] { transition-delay: .12s } [data-rv="3"] { transition-delay: .24s } [data-rv="4"] { transition-delay: .36s }
@media (prefers-reduced-motion: reduce) { [data-rv] { opacity: 1; transform: none; transition: none; } .hero-media img { animation: none !important; } .h-split span > span { animation: none !important; transform: none; } .marquee-track { animation: none !important; } }

/* nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 20; transition: background .35s, box-shadow .35s, backdrop-filter .35s; }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav.solid { background: rgba(12, 26, 75, .88); backdrop-filter: blur(14px); box-shadow: 0 10px 30px -20px rgba(0, 0, 0, .6); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); transition: color .3s; }
.brand img { width: 46px; height: 40px; object-fit: contain; }
.brand span { font-weight: 600; letter-spacing: -.01em; font-size: 1.02rem; line-height: 1.1; }
.brand small { display: block; font-weight: 400; font-size: .78rem; color: var(--muted); letter-spacing: .02em; transition: color .3s; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a:not(.pill) { color: var(--text-2); text-decoration: none; font-size: .95rem; font-weight: 500; transition: color .3s; }
.nav-links a:not(.pill):hover { color: var(--navy); }
.nav.solid .brand, .nav.solid .nav-links a:not(.pill) { color: #fff; }
.nav.solid .brand small { color: rgba(255, 255, 255, .7); }
.nav.solid .nav-links a:not(.pill):hover { color: #fff; }
.foot .brand small { color: rgba(255, 255, 255, .6); }

/* hero */
.hero-wrap { padding: 92px 16px 0; }
.hero { position: relative; max-width: 1240px; margin: 0 auto; border-radius: var(--r-xl); overflow: hidden; background: var(--navy-deep); color: #fff; box-shadow: var(--shadow-lg); isolation: isolate;
  display: grid; grid-template-columns: 1.02fr .98fr; grid-template-areas: "text media" "strip strip"; }
.hero-media { grid-area: media; position: relative; min-height: 540px; overflow: hidden; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: kb 26s var(--ease) both; transform-origin: 52% 52%; }
.hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(7, 18, 58, .45) 9%, rgba(7, 18, 58, 0) 26%); }
.hero.h-haus { grid-template-columns: 1.12fr .88fr; }
.hero.h-haus .hero-media { min-height: 640px; }
@keyframes kb { from { transform: scale(1.14); } to { transform: scale(1.02); } }
.hero-media::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(7, 18, 58, .18) 0%, rgba(7, 18, 58, 0) 30%, rgba(7, 18, 58, .28) 100%); }
.hero-inner { grid-area: text; align-self: center; padding: clamp(104px, 10vw, 132px) clamp(24px, 3.4vw, 52px) clamp(40px, 5vw, 58px); }
.hero h1 { font-size: clamp(2.1rem, 3.5vw, 3.5rem); }
.h-split span { display: block; overflow: hidden; }
.h-split span > span { display: block; transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; }
.h-split span:nth-child(2) > span { animation-delay: .12s } .h-split span:nth-child(3) > span { animation-delay: .24s }
@keyframes rise { to { transform: none; } }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: #ffb3bb; }
.hero-sub { font-size: 1.06rem; color: rgba(255, 255, 255, .82); max-width: 54ch; margin-bottom: 1.6rem; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.strip { grid-area: strip; list-style: none; margin: 0; padding: 26px clamp(24px, 5vw, 64px) 30px; background: var(--navy); display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.strip li { padding: 6px 0 14px; border-bottom: 1px solid rgba(255, 255, 255, .14); font-size: .95rem; font-weight: 500; color: #fff; }
.strip svg { width: 30px; height: 30px; stroke: #9fb4ff; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 12px; display: block; }
.strip small { display: block; font-weight: 400; color: rgba(255, 255, 255, .62); font-size: .85rem; margin-top: 2px; }

/* marquee */
.marquee { overflow: hidden; margin: 26px 0 0; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: mq 34s linear infinite; font-size: .85rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); }
.marquee-track span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); margin-right: 18px; vertical-align: 2px; }
@keyframes mq { to { transform: translateX(-50%); } }

/* sections */
.section { max-width: 1240px; margin: 0 auto; padding: 72px 28px; }
.sec-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: end; margin-bottom: 30px; }
.sec-head .lead { margin: 0; }

/* bento */
.bento { background: var(--navy); color: #fff; border-radius: var(--r-xl); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-lg); }
.bento h2 { color: #fff; }
.bento .lead { color: rgba(255, 255, 255, .75); }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.tile { position: relative; display: flex; flex-direction: column; background: linear-gradient(160deg, #f3f6fb, var(--tile)); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; color: var(--ink); min-height: 260px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.tile figure { margin: 0; flex: 1; display: block; padding: 0; overflow: hidden; background: #fff; }
.tile img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .7s var(--ease); }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
.tile .lbl { display: flex; background: #fff; align-items: center; gap: 10px; padding: 12px 20px 18px; font-size: .95rem; font-weight: 500; }
.tile .lbl i { width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex: none; }
.tile .go { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: #fff; display: grid; place-items: center; opacity: 0; transform: translate(6px, -6px); transition: opacity .35s, transform .45s var(--ease); box-shadow: var(--shadow-md); }
.tile .go svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; stroke-width: 2; }
.tile:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(0, 0, 0, .7); }
.tile:hover img { transform: scale(1.05); }
.tile:hover .go { opacity: 1; transform: none; }

/* feature image */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.gal figure { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--tile); }
.gal img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.gal figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px; font-size: .85rem; color: #fff;
  background: linear-gradient(180deg, rgba(7, 18, 58, 0), rgba(7, 18, 58, .78)); }
.gal figure:hover img { transform: scale(1.05); }
.gal-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 44px; flex-wrap: wrap; }
.gal-head p.lead { margin: 0; max-width: 52ch; }
.feature { position: relative; border-radius: var(--r-xl); overflow: hidden; margin-top: 18px; min-height: 440px; box-shadow: var(--shadow-lg); }
.feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 18, 58, 0) 40%, rgba(7, 18, 58, .55) 100%); }
.glass { position: absolute; right: 28px; bottom: 28px; z-index: 1; max-width: 460px; display: flex; gap: 16px; align-items: center; padding: 18px 20px; border-radius: 18px; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .35); backdrop-filter: blur(16px); color: #fff; }
.glass img { width: 54px; height: 48px; flex: none; object-fit: contain; }
.glass p { margin: 0; font-size: 1rem; line-height: 1.4; }

/* calendar */
.cal-card { background: #fff; border-radius: var(--r-xl); padding: clamp(22px, 3.5vw, 40px); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 26px; }
.day { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--bg); cursor: pointer; font: inherit; color: var(--ink); text-align: left; transition: background .3s, color .3s, border-color .3s, transform .4s var(--ease); }
.day:hover { transform: translateY(-2px); border-color: #c7d2e6; }
.day.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.day b { display: block; font-size: 1.35rem; font-weight: 500; letter-spacing: -.02em; line-height: 1.1; }
.day small { display: block; color: var(--muted); font-size: .85rem; }
.day.active small { color: rgba(255, 255, 255, .7); }
.day .cnt { font-size: .8rem; font-weight: 600; padding: 6px 10px; border-radius: 999px; background: #e7f6ec; color: var(--green); white-space: nowrap; }
.day.active .cnt { background: rgba(255, 255, 255, .16); color: #fff; }
.day.full .cnt { background: #f1f3f7; color: var(--muted); }
.panel { display: none; }
.panel.active { display: block; animation: fade .5s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.panel-top { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; color: var(--text-2); font-size: .95rem; }
.legend { display: flex; gap: 16px; font-size: .85rem; color: var(--muted); }
.legend i { display: inline-block; width: 12px; height: 12px; border-radius: 4px; border: 1px solid var(--line); background: #fff; margin-right: 6px; vertical-align: -1px; }
.legend i.tk { background: var(--tile-2); border-color: var(--tile-2); }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.slot { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 14px 16px; border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; text-decoration: none; color: var(--ink); transition: background .25s, color .25s, border-color .25s, transform .4s var(--ease), box-shadow .4s; }
.slot b { font-size: 1.2rem; font-weight: 500; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.slot small { font-size: .8rem; color: var(--muted); transition: color .25s; }
.slot:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.slot:hover small { color: rgba(255, 255, 255, .7); }
.slot.taken { background: var(--tile-2); border-color: var(--tile-2); color: #9aa5b8; pointer-events: none; }
.slot.taken b { text-decoration: line-through; }
.empty { margin-top: 16px; padding: 14px 18px; border-radius: var(--r-md); background: var(--bg); color: var(--text-2); }
.cal-note { display: flex; gap: 14px; flex-wrap: wrap; margin: 22px 0 0; color: var(--muted); font-size: .9rem; }
.cal-note span::before { content: "✓"; color: var(--green); margin-right: 6px; font-weight: 700; }

/* footer */
.foot { background: var(--navy-deep); color: rgba(255, 255, 255, .7); margin-top: 60px; }
.foot-inner { max-width: 1240px; margin: 0 auto; padding: 46px 28px 34px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot .brand span { color: #fff; }
.foot nav { display: flex; gap: 22px; }
.foot nav a { color: rgba(255, 255, 255, .75); text-decoration: none; font-size: .92rem; }
.foot nav a:hover { color: #fff; }
.foot .tag { font-size: .9rem; }

/* inner pages (form / confirmation) */
.page { max-width: 1240px; margin: 0 auto; padding: 110px 28px 40px; }
.page-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: start; }
.side { position: sticky; top: 100px; border-radius: var(--r-xl); overflow: hidden; background: var(--navy); color: #fff; min-height: 460px; box-shadow: var(--shadow-lg); isolation: isolate; }
.side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; opacity: .55; }
.side::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 18, 58, .2), rgba(7, 18, 58, .95)); }
.side-inner { padding: 32px 30px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 460px; }
.side .eyebrow { color: #9fb4ff; }
.side h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.side .when { display: flex; flex-direction: column; gap: 4px; margin-top: 14px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .2); }
.side .when b { font-size: 1.6rem; font-weight: 500; letter-spacing: -.02em; }
.side .when span { color: rgba(255, 255, 255, .75); }
.card { background: #fff; border-radius: var(--r-xl); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.back { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text-2); font-weight: 500; font-size: .95rem; margin-bottom: 18px; }
.back:hover { color: var(--navy); }
.form { margin-top: 14px; }
.form label { display: flex; flex-direction: column; gap: 7px; font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.form .opt { color: var(--muted); font-weight: 400; }
.form input:not([type=checkbox]), .form textarea { font: inherit; padding: 13px 16px; border: 1px solid #d5dce8; border-radius: 14px; background: var(--bg); color: var(--ink); width: 100%; transition: border-color .2s, background .2s, box-shadow .2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(12, 26, 75, .1); }
.form textarea { resize: vertical; min-height: 110px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.check { flex-direction: row !important; align-items: flex-start; gap: 12px !important; font-weight: 400 !important; color: var(--text-2) !important; font-size: .9rem !important; }
.check input { margin-top: 3px; width: 19px; height: 19px; accent-color: var(--navy); flex: none; }
.check a { color: var(--navy); }
.err { display: block; color: var(--red-2); font-style: normal; font-size: .84rem; font-weight: 500; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.btn { width: 100%; padding: 16px 24px; font-size: 1.05rem; margin-top: 6px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin: -6px 0 14px; }
.chip { padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font: inherit; font-size: .85rem; color: var(--text-2); cursor: pointer; transition: all .2s; }
.chip:hover { border-color: var(--navy); color: var(--navy); }

/* confirmation */
.confirm { max-width: 720px; margin: 0 auto; }
.ticket { border-radius: var(--r-xl); overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.ticket-head { position: relative; padding: 36px 36px 30px; background: var(--navy); color: #fff; overflow: hidden; isolation: isolate; }
.ticket-head img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; z-index: -1; }
.ticket-head .badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3); font-size: .82rem; font-weight: 600; margin-bottom: 16px; }
.ticket-head .badge i { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; }
.ticket-head .badge.gray i { background: #cbd5e1; }
.ticket-head h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: .4rem; }
.ticket-head p { color: rgba(255, 255, 255, .8); margin: 0; }
.ticket-body { padding: 30px 36px 10px; }
.rows { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-bottom: 22px; }
.rows div { padding: 14px 16px; border-radius: var(--r-md); background: var(--bg); }
.rows .wide { grid-column: 1 / -1; }
.rows span { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.rows strong { font-weight: 500; font-size: 1.1rem; letter-spacing: -.01em; }
.rows strong.big { font-size: 1.5rem; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; padding: 0 36px 30px; }
.actions .pill { flex: 1 1 200px; padding: 15px 22px; }
.share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: -6px 36px 22px; padding: 12px 14px; border-radius: var(--r-md); background: var(--bg); }
.share .chip { text-decoration: none; }
@media (max-width: 640px) { .share { margin-left: 22px; margin-right: 22px; } .share span[style] { margin-left: 0 !important; } }
.ticket-foot { padding: 0 36px 34px; color: var(--text-2); }
.ticket-foot a { color: var(--navy); word-break: break-all; }
.sign { margin: 10px 0 0; line-height: 1.4; }
.sign strong { color: var(--red); font-weight: 600; }

/* admin */
.admin .page { max-width: 1240px; }
.admin-head { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 20px; }
.admin-tools { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.inline { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: var(--text-2); }
.inline input { width: 64px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.admin .days { max-width: 640px; }
.grid { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; font-size: .93rem; }
.grid th { text-align: left; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--bg); }
.grid td { padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.grid tr:last-child td { border-bottom: 0; }
.grid .t { width: 92px; white-space: nowrap; }
.grid .t strong { font-size: 1.15rem; font-weight: 500; }
.grid .act { width: 110px; text-align: right; }
.is-booked { background: #fff7f7; }
.is-blocked { background: #f3f5f9; color: var(--muted); }
.is-past { opacity: .55; }
.bk-row { display: grid; grid-template-columns: 1.1fr 1.1fr 1.6fr auto; gap: 8px 14px; align-items: start; padding: 4px 0; }
.bk-row + .bk-row { border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 8px; }
.bk-row.cancelled { color: var(--muted); }
.bk-row.cancelled strong { text-decoration: line-through; }
.bk-row a { color: var(--navy); }
.bk-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; white-space: nowrap; }
.pillx { display: inline-block; background: var(--tile); color: var(--text-2); font-size: .72rem; padding: 2px 8px; border-radius: 999px; margin-left: 6px; }
.lnk { background: none; border: 0; color: var(--red-2); font: inherit; font-size: .85rem; cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 3px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px 20px; display: flex; flex-direction: column; gap: 2px; }
.stat span { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.stat b { font-size: 2.3rem; font-weight: 500; letter-spacing: -.03em; line-height: 1.1; color: var(--ink); }
.stat small { color: var(--text-2); font-size: .88rem; }
.stat.qr { background: var(--navy); border-color: var(--navy); }
.stat.qr span { color: #9fb4ff; } .stat.qr b { color: #fff; } .stat.qr small { color: rgba(255, 255, 255, .7); }
.admin-tabs { display: flex; gap: 6px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.atab { background: none; border: 0; border-bottom: 2px solid transparent; padding: 10px 14px; font: inherit; font-weight: 600; color: var(--muted); cursor: pointer; margin-bottom: -1px; }
.atab.active { color: var(--navy); border-bottom-color: var(--red); }
.apanel { display: none; } .apanel.active { display: block; }
.src { display: inline-block; font-size: .74rem; font-weight: 600; padding: 2px 9px; border-radius: 999px; background: var(--tile); color: var(--text-2); margin-left: 6px; vertical-align: 1px; white-space: nowrap; }
.mini .src, .links .src, .visits .src { margin-left: 0; }
.src-qr { background: var(--navy); color: #fff; }
.src-fb { background: #e3ebfb; color: #1d4ed8; }
.src-ig { background: #fbe4ef; color: #be185d; }
.src-mail { background: #fff1d6; color: #b45309; }
.src-web { background: #e0f2f1; color: #0f766e; }
.vgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; }
.vcard h3 { font-size: 1.1rem; margin-bottom: 12px; }
.mini { width: 100%; border-collapse: collapse; font-size: .92rem; }
.mini th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--line); }
.mini td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.mini td:not(:first-child), .mini th:not(:first-child) { text-align: right; }
.links { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 6px; }
.links li { display: flex; align-items: center; gap: 10px; font-size: .85rem; }
.links code { font-family: ui-monospace, Consolas, monospace; font-size: .8rem; color: var(--text-2); word-break: break-all; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 150px; padding-top: 10px; }
.bar { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 4px; min-width: 0; }
.bar i { display: flex; flex-direction: column; justify-content: flex-end; width: 100%; max-width: 38px; background: var(--tile-2); border-radius: 6px 6px 2px 2px; overflow: hidden; min-height: 4px; }
.bar i b { display: block; width: 100%; background: var(--navy); }
.bar span { font-size: .7rem; color: var(--muted); white-space: nowrap; }
.bar small { font-size: .72rem; font-weight: 600; color: var(--ink); }
.lg { display: inline-block; width: 10px; height: 10px; border-radius: 3px; background: var(--tile-2); vertical-align: -1px; }
.lg-qr { background: var(--navy); }
.ok { color: var(--green); font-weight: 600; }
.visits td { vertical-align: middle; }

/* focus, notices, manual booking */
.slot:focus-visible, .pill:focus-visible, .day:focus-visible, .tile:focus-visible, .atab:focus-visible, .chip:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.notice { background: #fff7ed; border: 1px solid #fed7aa; color: #7c2d12; border-radius: var(--r-md); padding: 12px 16px; margin: 6px 0 16px; font-size: .95rem; }
.notice a { color: var(--navy); font-weight: 600; }
.manual { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px 18px; margin-bottom: 16px; }
.manual summary { cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; }
.manual summary::-webkit-details-marker { display: none; }
.manual summary .muted { font-weight: 400; font-size: .9rem; }
.manual-form { margin-top: 14px; }
.manual-form label { margin-bottom: 12px; font-size: .85rem; }
.manual-form input, .manual-form select { padding: 10px 12px !important; border-radius: 10px !important; font: inherit; border: 1px solid #d5dce8; background: var(--bg); color: var(--ink); width: 100%; }
.row3 { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 0 12px; }
@media (max-width: 640px) { .row3 { grid-template-columns: 1fr; } }

/* qr card */
.qr-wrap { min-height: 100vh; display: grid; place-items: center; padding: 100px 20px 40px; }
.qr-card { width: 440px; max-width: 100%; background: #fff; border-radius: var(--r-xl); padding: 36px 32px 30px; text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.qr-card img.logo { width: 72px; height: 64px; margin: 0 auto 14px; object-fit: contain; }
.qr-card h1 { font-size: 2rem; margin-bottom: .2rem; }
.qr-card .sub { color: var(--text-2); margin-bottom: 18px; }
.qr-card img.qr { width: 260px; height: 260px; margin: 0 auto 14px; border-radius: 18px; border: 1px solid var(--line); padding: 10px; }
.qr-card .url { font-size: .82rem; color: var(--muted); word-break: break-all; }
.qr-hint { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 16px; }
.qr-hint a { color: var(--navy); }
@media print { .nav, .qr-hint, .foot { display: none !important; } .qr-wrap { padding: 0; min-height: auto; } body { background: #fff; } .qr-card { box-shadow: none; } }

/* responsive */
@media (max-width: 1000px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .sec-head { grid-template-columns: 1fr; gap: 10px; }
  .page-grid { grid-template-columns: 1fr; }
  .side { position: relative; top: auto; min-height: 0; }
  .side-inner { min-height: 0; padding: 26px 24px; }
  .side img { opacity: .4; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-inner { padding: 12px 16px; }
  .nav-links a:not(.pill) { display: none; }
  .brand img { width: 40px; height: 35px; }
  .brand span { font-size: .95rem; white-space: nowrap; }
  .brand small { display: none; }
  .hero-wrap { padding: 72px 10px 0; }
  .hero { border-radius: 22px; grid-template-columns: 1fr; grid-template-areas: "media" "text" "strip"; }
  .hero.h-haus { grid-template-columns: 1fr; }
  .hero-inner { padding: 26px 22px 32px; }
  .hero-media { min-height: 0; aspect-ratio: 4/3; }
  .hero.h-haus .hero-media { min-height: 0; aspect-ratio: 3/4; }
  .hero-media::before { background: linear-gradient(180deg, rgba(7, 18, 58, .35) 0%, rgba(7, 18, 58, 0) 26%, rgba(7, 18, 58, .18) 100%); }
  .gal { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gal figcaption { padding: 20px 10px 8px; font-size: .72rem; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .hero-sub { font-size: 1.02rem; }
  .hero-cta .pill { flex: 1 1 100%; }
  .strip { grid-template-columns: 1fr 1fr; gap: 12px; padding: 22px 22px 24px; }
  .strip li { font-size: .88rem; }
  .section { padding: 48px 14px; }
  .bento { border-radius: 22px; }
  .tiles { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tile { min-height: 0; }
  .tile .lbl { padding: 8px 14px 14px; font-size: .85rem; }
  .feature { min-height: 380px; border-radius: 22px; }
  .glass { left: 14px; right: 14px; bottom: 14px; padding: 14px; }
  .glass img { width: 44px; height: 39px; }
  .cal-card { border-radius: 22px; }
  .days { grid-template-columns: 1fr; gap: 8px; }
  .day { padding: 13px 16px; }
  .day b { font-size: 1.15rem; }
  .slots { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .slot { padding: 12px 12px; }
  .slot b { font-size: 1.05rem; }
  .page { padding: 84px 14px 30px; }
  .row2 { grid-template-columns: 1fr; gap: 0; }
  .rows { grid-template-columns: 1fr; gap: 10px; }
  .ticket-head, .ticket-body { padding-left: 22px; padding-right: 22px; }
  .actions, .ticket-foot { padding-left: 22px; padding-right: 22px; }
  .foot-inner { padding: 36px 16px 28px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat { padding: 14px 16px; } .stat b { font-size: 1.8rem; }
  .vgrid { grid-template-columns: 1fr; }
  .visits th:nth-child(4), .visits td:nth-child(4) { display: none; }
  .bk-row { grid-template-columns: 1fr; gap: 3px; }
  .bk-actions { flex-direction: row; justify-content: space-between; align-items: center; }
  .grid th:nth-child(3), .grid th:nth-child(4) { display: none; }
}

/* Buchung im Adminbereich bearbeiten */
.bk-edit { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 14px;
  margin-top: 12px; padding: 14px; border-radius: 14px; background: #f4f7fd; border: 1px solid var(--line); }
.bk-edit label { display: flex; flex-direction: column; gap: 4px; font-size: .78rem; color: var(--muted); font-weight: 500; }
.bk-edit label.wide { grid-column: 1 / -1; }
.bk-edit input, .bk-edit select, .bk-edit textarea { font: inherit; font-size: .92rem; color: var(--ink);
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; width: 100%; }
.bk-edit textarea { resize: vertical; }
.bk-edit-act { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; }
.bk-edit[hidden] { display: none !important; }
@media (max-width: 860px) { .bk-edit { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bk-edit { grid-template-columns: 1fr; } }
