/* TourDeRoom – statischer Rebuild, Stand Juli 2026 */
@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #23251f;
  --ink-soft: #4c4f46;
  --green-900: #3b3d34;
  --green-700: #4f5851;
  --blue: #4a6cf7;
  --blue-dark: #3554d1;
  --bg: #ffffff;
  --bg-soft: #f4f5f1;
  --line: #e3e5df;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(35, 37, 31, .10);
  --container: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--green-900); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }

h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h2.section-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; text-align: center; }
.section-lead { text-align: center; max-width: 640px; margin: 0 auto 40px; color: var(--ink-soft); }
.section--dark .section-lead { color: #d4d6cd; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.header__logo img { width: 150px; height: auto; }
.nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav a { color: var(--ink); font-weight: 500; font-size: .95rem; white-space: nowrap; }
.nav a:hover { color: var(--blue-dark); text-decoration: none; }
.header__cta {
  background: var(--green-900); color: #fff !important;
  padding: 9px 18px; border-radius: 999px; font-weight: 500;
}
.header__cta:hover { background: var(--green-700); }
.header__lang { font-size: .9rem; color: var(--ink-soft); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 920px) {
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 18px 20px 22px;
    border-bottom: 1px solid var(--line); gap: 16px; margin: 0;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero { padding: 84px 0 64px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
.hero h1 .accent {
  background: var(--green-900); color: #fff;
  padding: 2px 12px; border-radius: 8px; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero__pre, .hero__post { display: block; }
.hero__post { color: var(--ink-soft); font-weight: 400; font-size: .62em; margin-top: 14px; }
.hero__cta-row { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 0; cursor: pointer; transition: transform .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--blue); color: #fff !important; }
.btn--primary:hover { background: var(--blue-dark); }
.btn--ghost { background: transparent; border: 2px solid var(--green-900); color: var(--green-900) !important; }
.btn--ghost:hover { background: var(--green-900); color: #fff !important; }
.btn--light { background: #fff; color: var(--green-900) !important; }
.hero__illu img, .hero__illu object { width: 100%; max-width: 480px; margin: 0 auto; }
.hero__more { margin-top: 44px; text-align: center; }
.hero__more a { color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 820px) {
  .hero { padding: 48px 0 40px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__illu { order: -1; }
  .hero__illu img { max-width: 300px; }
}

/* ---------- Leistungen (Videos) ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.showcase__item h3 { font-size: 1.5rem; margin-bottom: 4px; }
.showcase__item .sub { color: var(--blue-dark); font-weight: 700; margin-bottom: 18px; }
.showcase__media { border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.showcase__media--phone { max-width: 300px; margin: 0 auto; }
.showcase__text { color: var(--ink-soft); margin-top: 18px; }
@media (max-width: 820px) { .showcase { grid-template-columns: 1fr; } }

/* ---------- Vorteile ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  background: #fff; border-radius: var(--radius); padding: 28px 20px;
  text-align: center; box-shadow: var(--shadow);
}
.stat__num { font-size: 2.2rem; font-weight: 700; color: var(--blue-dark); }
.stat__label { color: var(--ink-soft); margin-top: 4px; }
.stats-footnote { text-align: center; color: var(--ink-soft); font-size: .8rem; margin-top: 22px; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Branchen ---------- */
.branchen { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.branche {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px;
}
.branche h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--green-900); }
.branche ul { list-style: none; }
.branche li { padding-left: 26px; position: relative; margin-bottom: 10px; color: var(--ink-soft); font-size: .95rem; }
.branche li::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue); opacity: .18;
}
.branche li::after {
  content: ''; position: absolute; left: 4px; top: .45em; margin-top: 4px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-dark);
}
@media (max-width: 1020px) { .branchen { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .branchen { grid-template-columns: 1fr; } }

/* ---------- Referenzen (Marquee) ---------- */
.marquee { overflow: hidden; position: relative; padding: 10px 0; }
.marquee__track { display: flex; gap: 56px; align-items: center; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: 56px; width: auto; filter: grayscale(1); opacity: .75; transition: filter .2s, opacity .2s; }
.marquee__track img:hover { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}
.logogrid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  align-items: center; margin-top: 44px;
}
.logogrid img {
  max-height: 52px; width: auto; max-width: 100%; margin: 0 auto;
  filter: grayscale(1); opacity: .65; transition: filter .2s, opacity .2s;
}
.logogrid img:hover { filter: none; opacity: 1; }
@media (max-width: 900px) { .logogrid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .logogrid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Projekte / Touren ---------- */
.tours { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tour {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 9; background: var(--green-900); box-shadow: var(--shadow);
}
.tour--wide { grid-column: span 3; aspect-ratio: 21 / 9; }
.tour img.tour__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tour iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tour__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(180deg, rgba(35,37,31,.18), rgba(35,37,31,.55));
  color: #fff; cursor: pointer; border: 0; width: 100%; font: inherit;
}
.tour__overlay:hover .tour__play { transform: scale(1.08); }
.tour__play {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center; transition: transform .15s ease;
}
.tour__play svg { width: 26px; height: 26px; fill: var(--green-900); margin-left: 3px; }
.tour__label { font-weight: 700; font-size: 1.05rem; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.tour__hint { font-size: .8rem; opacity: .85; }
@media (max-width: 900px) {
  .tours { grid-template-columns: 1fr 1fr; }
  .tour--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .tours { grid-template-columns: 1fr; }
  .tour--wide { grid-column: span 1; aspect-ratio: 16 / 9; }
}

/* ---------- Bestpreis ---------- */
.uspgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.usp h3 { font-size: 1.2rem; margin-bottom: 12px; }
.usp p { color: #d4d6cd; font-size: .96rem; }
.usp__icon { width: 44px; height: 44px; margin-bottom: 16px; color: #fff; opacity: .9; }
.usp__icon svg { width: 100%; height: 100%; }
@media (max-width: 820px) { .uspgrid { grid-template-columns: 1fr; } }

/* ---------- Panoramen ---------- */
.panos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pano {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 9; background: var(--green-900); box-shadow: var(--shadow);
}
.pano .pnlm-container { position: absolute !important; inset: 0; width: 100% !important; height: 100% !important; }
@media (max-width: 820px) { .panos { grid-template-columns: 1fr; } }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- Angebot / JotForm ---------- */
.offer-facade {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: 48px 24px; text-align: center; background: #fff;
}
.offer-frame { border-radius: var(--radius); overflow: hidden; background: #fff; }
.offer-frame iframe { width: 100%; height: 900px; border: 0; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member { text-align: center; }
.member img {
  border-radius: var(--radius); aspect-ratio: 1 / 1; object-fit: cover;
  box-shadow: var(--shadow); margin-bottom: 14px;
}
.member h3 { font-size: 1.05rem; }
.member .role { color: var(--ink-soft); font-size: .9rem; margin-bottom: 8px; }
.member__links { display: flex; gap: 12px; justify-content: center; }
.member__links a { color: var(--green-700); }
.member__links a:hover { color: var(--blue-dark); }
.member__links svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Videocall CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.cta-band p { color: #d4d6cd; margin-bottom: 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  padding: 18px 48px 18px 22px; font-weight: 700; cursor: pointer;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--green-700);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq__body { padding: 0 22px 20px; color: var(--ink-soft); }
.faq .faq__body p + p { margin-top: 10px; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__info h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 18px; }
.contact__info p { margin-bottom: 12px; }
.contact__info a { color: inherit; font-weight: 500; }
.contact__info .adr { color: var(--ink-soft); font-size: .95rem; margin-top: 24px; }
.form { display: grid; gap: 14px; }
.form label { font-weight: 500; font-size: .92rem; }
.form input, .form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: #fff; margin-top: 6px;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--blue); border-color: transparent; }
.hidden { display: none !important; }
@media (max-width: 820px) { .contact { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: #cfd1c8; padding: 56px 0 32px; font-size: .92rem; }
.footer a { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer__logo { width: 140px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer__social { display: flex; gap: 14px; margin-top: 14px; }
.footer__social a { display: inline-flex; }
.footer__social svg { width: 22px; height: 22px; fill: #fff; }
.footer__note { font-size: .78rem; color: #a9aca0; border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; }
.footer__note p + p { margin-top: 8px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 64px 20px; }
.legal h1 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 28px; }
.legal h2 { font-size: 1.25rem; margin: 32px 0 12px; }
.legal p { margin-bottom: 14px; color: var(--ink-soft); }
.legal p strong { color: var(--ink); }
.legal ul { margin: 0 0 14px 22px; color: var(--ink-soft); }

/* ---------- Partner ---------- */
.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; text-align: center;
}
.partner-card img { height: 90px; width: auto; object-fit: contain; margin: 0 auto 18px; }
.partner-card h3 { margin-bottom: 10px; }
.partner-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 16px; }
@media (max-width: 900px) { .partners { grid-template-columns: 1fr; } }
