/* ============================================================
   STYLE — editorialer Architektur-Look (Hugo-Toro-Vorbild)
   Schwarz auf Weiß, klassische Serife, viel Weißraum.
   Normalerweise nichts ändern. Schrift tauschen: siehe --serif.
   ============================================================ */

:root {
  --ink:    #111111;        /* fast schwarz */
  --paper:  #ffffff;        /* weiß */
  --muted:  #8a8a8a;        /* graue Labels */
  --line:   #e6e6e6;        /* feine Linien */

  /* Schrift: Google Fonts (PT Serif + Spectral) */
  --serif:   "PT Serif", "Times New Roman", Times, Georgia, serif;
  --display: "Spectral", "PT Serif", "Times New Roman", serif;

  --maxw: 1320px;
  --pad: 40px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* labels in Versalien, klein, gesperrt — wie im Original */
.label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   HEADER
   - obere Zeile: 3 verwandte "Welten"
   - darunter: Logo links, Navigation rechts
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.toplinks a {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  transition: color .25s var(--ease);
}
.toplinks a:hover, .toplinks a.active { color: var(--ink); }

/* Sprachumschalter DE | EN */
.lang-switch { display:inline-flex; align-items:center; gap:7px; margin-left:18px; }
.lang-switch a { font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); transition:color .25s var(--ease); }
.lang-switch a:hover, .lang-switch a.lang-active { color:var(--ink); }
.lang-sep { color:var(--line); font-size:11px; }

/* Footer rechtliche Links */
.footer-legal { display:flex; gap:20px; }
.footer-legal a { color:#8d8377; }
.footer-legal a:hover { color: var(--brass-lt, #c4a878); }

/* Rechtstexte-Seiten */
.legal { max-width:760px; }
.legal h1 { font-family:var(--display); font-weight:400; font-size:clamp(30px,4vw,46px); margin-bottom:24px; }
.legal h2 { font-family:var(--display); font-weight:500; font-size:20px; margin:30px 0 8px; }
.legal h3 { font-family:var(--body); font-weight:600; font-size:15px; margin:20px 0 6px; }
.legal p { font-size:15.5px; line-height:1.7; margin-bottom:12px; color:var(--ink); }
.legal em { color:var(--muted); }

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px var(--pad) 16px; max-width: var(--maxw); margin: 0 auto;
}
/* Dreispaltiges Layout: links Quick-Call, Mitte Logo, rechts Nav */
.header-main.header-3col {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 14px var(--pad);
}
.header-left { justify-self: start; }
.header-right { justify-self: end; display: flex; align-items: center; }
.header-logo { justify-self: center; display: block; line-height: 0; }
.header-logo img { display: block; }
.toplinks { display: flex; gap: 26px; padding: 0; max-width: none; margin: 0; }
.logo { font-family: var(--display); font-size: 22px; letter-spacing: .04em; color: var(--ink); }
.logo img { max-height: 34px; width: auto; }
.mainnav { display: flex; gap: 30px; }
.mainnav a {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; position: relative; padding-bottom: 3px;
}
.mainnav a::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0; background: var(--ink);
  transition: width .3s var(--ease);
}
.mainnav a:hover::after, .mainnav a.active::after { width: 100%; }
.burger { display:none; background:none; border:0; font-size:20px; cursor:pointer; color:var(--ink); -webkit-appearance:none; }
.m-call-wrap { display:none; }   /* 1:1-Gespräch im Menü nur auf Mobil sichtbar */

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }
.hero-media { width: 100%; height: calc(100vh - 120px); min-height: 520px; overflow: hidden; background:#000; }
.hero-media video, .hero-media img { width:100%; height:100%; object-fit: cover; }
.hero-caption {
  position: absolute; left: var(--pad); bottom: 28px; color:#fff;
  text-shadow: 0 1px 18px rgba(0,0,0,.4);
}
.hero-caption div { font-size: 14px; line-height: 1.5; letter-spacing:.02em; }

/* ============================================================
   PROJEKT-EINTRAG (vertikale Abfolge wie im Original)
   ============================================================ */
.project { padding: 86px 0; border-bottom: 1px solid var(--line); }
.project:last-child { border-bottom: 0; }
.project-head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.project-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.1; letter-spacing: -0.01em;
}
.project-title a:hover { text-decoration: underline; text-underline-offset: 6px; }
.project-sub { margin-top: 6px; }
.project-body {
  max-width: var(--maxw); margin: 22px auto 0; padding: 0 var(--pad);
  font-size: 16.5px; line-height: 1.72;
}
.project-body > * { max-width: 760px; }
.project-body p { margin-bottom: 14px; }
.project-body p.lead { font-style: italic; }
.project-media { margin-top: 40px; }
.project-media video, .project-media img { width:100%; height:auto; object-fit: cover; }
.see {
  display: inline-block; margin: 22px var(--pad) 0;
  font-size: 12px; letter-spacing:.16em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
}
.see:hover { opacity:.55; }

/* ============================================================
   PROJEKT-KARUSSELL (horizontaler Bildstreifen mit Pfeilen)
   ============================================================ */
.carousel { position: relative; margin-top: 40px; }
.carousel-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth;
  padding: 0 var(--pad); scroll-snap-type: x mandatory;
  scrollbar-width: none;            /* Firefox */
}
.carousel-track::-webkit-scrollbar { display: none; }   /* Chrome/Safari */
.carousel-track img {
  height: 70vh; max-height: 680px; width: auto; flex: 0 0 auto;
  object-fit: cover; scroll-snap-align: center; background:#f2f2f2;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7);
  background: rgba(0,0,0,.35); color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 3;
  transition: background .25s var(--ease); backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: rgba(0,0,0,.6); }
.carousel-prev { left: calc(var(--pad) + 14px); }
.carousel-next { right: calc(var(--pad) + 14px); }
.carousel-count {
  text-align: center; margin-top: 14px; font-size: 12px; letter-spacing: .14em; color: var(--muted);
}
@media (max-width: 820px) {
  .carousel-track img { height: 52vh; }
  .carousel-btn { width: 40px; height: 40px; }
}

/* "SEE ALL PROJECTS" */
.see-all { text-align:center; padding: 70px 0; }
.see-all a {
  font-size: 13px; letter-spacing:.18em; text-transform: uppercase;
  border:1px solid var(--ink); padding: 14px 30px; transition: all .3s var(--ease);
}
.see-all a:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   GENERISCHE SEITEN (About / Press / Ads)
   ============================================================ */
.page { padding: 80px 0 100px; }
.page-narrow { max-width: 900px; }

/* About: Bild rechts, Text links */
.about-grid {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 64px; align-items: center;
}
.about-text h1 { font-family: var(--display); font-weight:400; font-size: clamp(32px,4.5vw,56px); margin-bottom: 22px; margin-left: -0.04em; }
.about-text p { font-size: 17px; line-height: 1.75; margin-bottom: 14px; max-width: 460px; }
.about-img img { width:100%; aspect-ratio: 4/5; object-fit: cover; }
.about-btn {
  display:inline-block; margin-top: 26px; font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  border:1px solid var(--ink); padding: 13px 26px; transition: all .3s var(--ease);
}
.about-btn:hover { background:var(--ink); color:var(--paper); }

/* Press: Logo-Liste */
.press-list { border-top:1px solid var(--line); margin-top: 30px; }
.press-row {
  display:flex; align-items:center; gap: 28px;
  padding: 26px var(--pad); border-bottom:1px solid var(--line);
  transition: background .25s var(--ease);
}
.press-row:hover { background:#fafafa; }
.press-logo { width: 130px; flex-shrink:0; }
.press-logo img { max-height: 40px; width:auto; }
.press-outlet { font-family: var(--display); font-size: 22px; }
.press-note { color: var(--muted); margin-left:auto; font-size:14px; }

/* Ads landing */
.ads-hero { text-align:center; max-width: 820px; margin: 0 auto; }
.ads-hero h1 { font-family: var(--display); font-weight:400; font-size: clamp(34px,5.5vw,68px); line-height:1.05; }
.ads-hero p { font-size: 19px; margin-top: 20px; color:#333; }
.ads-media { margin: 50px auto; max-width: 1000px; }
.ads-media img, .ads-media video { width:100%; }
.ads-offer { max-width: 620px; margin: 0 auto; list-style:none; }
.ads-offer li { padding: 16px 0 16px 30px; border-bottom:1px solid var(--line); position:relative; font-size:17px; }
.ads-offer li::before { content:"—"; position:absolute; left:0; }
.ads-cta { text-align:center; margin-top: 50px; }
.btn {
  display:inline-block; font-size:13px; letter-spacing:.16em; text-transform:uppercase;
  border:1px solid var(--ink); padding: 16px 40px; cursor:pointer; background:var(--paper); color:var(--ink);
  transition: all .3s var(--ease); font-family: var(--serif);
}
.btn:hover { background: var(--ink); color: var(--paper); }
.embed-frame { width:100%; height: 720px; border:1px solid var(--line); margin-top: 30px; }

/* ============================================================
   QUICK-CALL-SEITE (ads.html)
   ============================================================ */
.qc { max-width: 820px; margin: 0 auto; }
.qc-title {
  font-family: var(--display); font-weight: 400; font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06; text-align: center; margin-bottom: 36px;
}
.qc p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.qc-block { margin-top: 48px; }
.qc-block h2 {
  font-family: var(--display); font-weight: 400; font-size: 28px; margin-bottom: 18px;
}
/* Liste "Was wir klären" */
.qc-list { list-style: none; }
.qc-list li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; line-height: 1.6; }
.qc-list li:last-child { border-bottom: 0; }
.qc-list b { font-family: var(--display); font-size: 18px; font-weight: 500; }
/* "So bereiten wir uns vor" */
.qc-prep { list-style: none; margin-top: 10px; }
.qc-prep li { padding: 10px 0 10px 26px; position: relative; font-size: 16.5px; line-height: 1.6; }
.qc-prep li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }

/* kleiner Anhang-Text: kleiner, heller, kursiv */
.qc-note {
  font-size: 14px; line-height: 1.65; color: #9a9a9a; font-style: italic;
  margin-top: 14px;
}
/* "Was dich erwartet" — gleiche Laufweite wie Fließtext, aber heller (tritt zurück) */
.qc-aside {
  margin: 48px auto; max-width: 820px;
}
.qc-aside p { font-size: 13.5px; line-height: 1.7; margin-bottom: 14px; color: #b3a690; }

/* Pakete nebeneinander in hellgrauen, abgerundeten Kästen */
.qc-packages-title {
  font-family: var(--display); font-weight: 400; font-size: clamp(28px, 4vw, 42px);
  text-align: center; margin: 8px 0 32px;
}
.qc-packages {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.qc-pkg {
  background: #f4f2ee; border-radius: 14px; padding: 30px 26px;
  display: flex; flex-direction: column;
}
.qc-pkg h3 { font-family: var(--display); font-weight: 500; font-size: 26px; margin-bottom: 6px; }
.qc-pkg .meta {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--brass, #9a7b4f);
  color: #7a7a7a; margin-bottom: 16px;
}
.qc-pkg p { font-size: 15px; line-height: 1.6; margin: 0; }
.qc-pkg-bonus {
  margin-top: 14px !important; padding-top: 14px;
  border-top: 1px solid #ddd9d2; font-weight: 500;
}

/* Hinweissatz unter den Paketen */
.qc-notice {
  max-width: 680px; margin: 48px auto 0; text-align: center;
  font-size: 15px; line-height: 1.7; color: #555;
}

/* Buchungsbereich */
.qc-booking { max-width: 900px; margin: 40px auto 0; }
.qc-booking-ph {
  background: #f4f2ee; border-radius: 14px; padding: 60px 30px; text-align: center; color: #8f8f8f;
}

@media (max-width: 820px) {
  .qc-packages { grid-template-columns: 1fr; }
}

/* Mail form (Fallback) */
.form { max-width: 520px; margin: 30px auto 0; }
.field { margin-bottom: 16px; }
.field label { display:block; font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }
.field input, .field textarea {
  width:100%; padding: 12px 14px; border:1px solid var(--line); font-family: var(--serif); font-size:15px;
}
.field input:focus, .field textarea:focus { outline:none; border-color: var(--ink); }

/* placeholder media box */
.ph {
  background:#f2f2f2; border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  color:#b3b3b3; font-size:13px; letter-spacing:.1em; text-transform:uppercase; min-height: 280px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 70px 0 40px; border-top:1px solid var(--line); margin-top: 40px; }
.footer-top { display:flex; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.footer-emails a { display:block; }
.footer-emails a:hover { text-decoration: underline; }
.footer-bottom { margin-top: 40px; font-size: 12px; color: var(--muted); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  :root { --pad: 22px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img { order:-1; }
  .about-img img { aspect-ratio: 4/4.2; max-height: 66vh; object-position: center top; }

  /* Header mobil: [DE|EN + Sprache]  [Logo Mitte]  [Burger] */
  .header-main.header-3col { grid-template-columns: 1fr auto 1fr; padding: 12px var(--pad); }
  .header-left .toplinks > a { display:none; }         /* 1:1 Gespräch aus Kopfzeile ausblenden (kommt ins Menü) */
  .header-left .lang-switch { margin-left:0; }          /* nur DE|EN bleibt links */
  .header-logo img { width:120px !important; }          /* Logo kleiner */

  .burger { display:block; color:var(--ink); font-size:22px; }
  .mainnav { display:none; position:absolute; top:100%; right:0; left:0; background:var(--paper);
    flex-direction:column; gap:0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .mainnav.open { display:flex; }
  .mainnav a { padding: 16px var(--pad); border-top:1px solid var(--line); }
  .mainnav a:first-child { border-top:0; }
  .mainnav .m-call { font-weight:600; }                 /* 1:1 Gespräch im Menü */
  .m-call-wrap { display:block; }                        /* im Burger sichtbar */
  .m-call-wrap a { display:block; padding:16px var(--pad); border-top:1px solid var(--line); }
  .header-main { position: relative; }

  .hero-media { height: 62vh; }
  .press-row { flex-wrap:wrap; gap:12px; }
  .press-note { margin-left:0; width:100%; }
}
