/* ============================================================
   BENSIRIUS IMMOBILIEN GMBH
   Helles, cleanes Design · Warmes Weiß / Gold / Anthrazit
   Epilogue + Playfair Display
   ============================================================ */

:root {
  --black:      #1a1a1a;
  --black-2:    #2a2a2a;
  --dark:       #2c2c2c;
  --gray-dark:  #444444;
  --gray:       #777777;
  --gray-light: #aaaaaa;
  --border:     #e2ddd6;
  --bg:         #f9f7f4;
  --bg-2:       #f2efe9;
  --bg-3:       #ece8e0;
  --white:      #ffffff;
  --gold:       #c9a227;
  --gold-2:     #b08a18;
  --gold-pale:  #fdf8ec;
  --gold-light: #f5e9b8;
  --font-sans:  'Epilogue', system-ui, sans-serif;
  --font-ser:   'Playfair Display', Georgia, serif;
  --ease:       cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Panels ───────────────────────────────────────────────── */
.panel {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(249,247,244,0);
  transition: background .3s var(--ease), box-shadow .3s;
}
.topbar.solid {
  background: rgba(249,247,244,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.tb-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.tb-mark {
  width: 34px; height: 34px;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-ser);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.tb-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.01em;
}
.tb-name em { font-style: normal; font-weight: 300; color: var(--gray); }
.tb-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.tb-nav a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-dark);
  padding: .5rem .85rem;
  border-radius: 4px;
  transition: color .2s, background .2s;
  min-height: 44px;
  display: flex; align-items: center;
}
.tb-nav a:hover { color: var(--black); background: var(--bg-2); }
.tb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px; height: 44px;
  border-radius: 4px;
  background: var(--bg-2);
}
.tb-burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s;
}
.tb-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.tb-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* ============================================================
   PANEL 1 – INTRO
   ============================================================ */
.p-intro {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 60px;
}

.p-intro-left {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-right: 1px solid var(--border);
  min-height: 100vh;
  min-height: 100svh;
}
.pi-eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.pi-title {
  display: flex;
  flex-direction: column;
  gap: .05em;
  margin-bottom: 2rem;
  line-height: 1.05;
}
.pit-thin {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 200;
  color: var(--gray-light);
  letter-spacing: -.03em;
}
.pit-bold {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.05em;
  line-height: .95;
}
.pit-italic {
  font-family: var(--font-ser);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -.01em;
}
.pi-body {
  font-size: clamp(.88rem, 1.3vw, 1rem);
  color: var(--gray);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.pi-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.pi-btn-main {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: .9rem 2rem;
  border-radius: 4px;
  transition: background .2s;
  min-height: 48px;
}
.pi-btn-main:hover { background: var(--dark); }
.pi-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray);
  transition: color .2s;
  min-height: 48px;
}
.pi-btn-ghost:hover { color: var(--black); }
.pi-arrow {
  display: inline-block;
  animation: bounceDown 1.6s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Rechte Hälfte – Ticker-Board */
.p-intro-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  background: var(--white);
}
.pir-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pir-deco svg { width: 100%; height: 100%; max-width: 500px; }

.ticker-board {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.tb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.tb-row:last-child { border-bottom: none; }
.tb-row--gold { background: var(--gold-pale); }
.tb-row--light { background: var(--bg); }
.tbr-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-light);
  flex-shrink: 0;
}
.tbr-val {
  font-family: var(--font-ser);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.03em;
  line-height: 1;
  text-align: right;
}
.tbr-val--text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--gold);
}
.tb-row--gold .tbr-val { color: var(--gold-2); }

/* Scroll-Hint */
.p-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7px;
}
.p-scroll-hint span {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   PANEL 2 – SERVICES (Horizontales Karussell)
   ============================================================ */
.p-services {
  background: var(--bg-2);
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  gap: clamp(2rem, 4vw, 3rem);
  min-height: auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ps-header {
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.ps-num {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  letter-spacing: -.05em;
  flex-shrink: 0;
}
.ps-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--black);
}
.ps-header p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 340px;
  margin-left: auto;
  padding-bottom: .25rem;
}

.ps-track-wrap { position: relative; overflow: hidden; }
.ps-track {
  display: flex;
  gap: 1rem;
  padding: 0 clamp(1.5rem, 4vw, 4rem) 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
}
.ps-track::-webkit-scrollbar { display: none; }
.ps-track.dragging { cursor: grabbing; }

.ps-card {
  flex: 0 0 clamp(260px, 30vw, 340px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.ps-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); border-color: var(--gold); transform: translateY(-2px); }
.ps-card--featured {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.ps-card--featured:hover { background: var(--dark); border-color: var(--dark); transform: translateY(-2px); }
.ps-card--cta {
  background: var(--gold-pale);
  border: 1.5px dashed var(--gold);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}
.psc-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gray-light);
}
.ps-card--featured .psc-num { color: rgba(255,255,255,.35); }
.ps-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--black);
}
.ps-card--featured h3 { color: var(--white); }
.ps-card p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}
.ps-card--featured p { color: rgba(255,255,255,.65); }
.psc-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2px;
  background: var(--bg-2);
  color: var(--gray);
  align-self: flex-start;
}
.ps-card--featured .psc-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.psc-cta-text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-dark);
  line-height: 1.5;
}
.psc-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: .75rem 1.5rem;
  border-radius: 4px;
  transition: background .2s;
  min-height: 44px;
}
.psc-cta-btn:hover { background: var(--dark); }
.ps-drag-hint {
  text-align: center;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: .5rem 0 0;
}

/* ============================================================
   PANEL 3 – ÜBER UNS
   ============================================================ */
.p-about {
  background: var(--white);
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--border);
}
.pa-inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.pa-top {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}
.pa-num {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: var(--bg-3);
  line-height: 1;
  letter-spacing: -.05em;
  flex-shrink: 0;
}
.pa-num--light { color: rgba(0,0,0,.05); }
.pa-quote {
  font-family: var(--font-ser);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--black);
  padding-top: .5rem;
}
.pa-quote strong {
  font-weight: 700;
  font-style: normal;
  color: var(--black);
}

/* Fakten-Grid */
.pa-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.pag-item {
  background: var(--white);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: background .2s;
}
.pag-item:hover { background: var(--bg); }
.pag-item--wide { grid-column: 1; grid-row: 1 / 3; }
.pag-item--dark { background: var(--black); color: var(--white); }
.pag-item--dark:hover { background: var(--dark); }
.pag-item--gold { background: var(--gold); color: var(--black); }
.pag-item--gold:hover { background: var(--gold-2); color: var(--white); }
.pagi-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.pag-item--dark .pagi-label { color: rgba(255,255,255,.4); }
.pag-item--gold .pagi-label { color: rgba(0,0,0,.5); }
.pagi-val {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.pag-item--wide h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  color: var(--black);
}
.pag-item--wide p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   PANEL 4 – VORTEILE
   ============================================================ */
.p-vorteile {
  background: var(--bg);
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pv-inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.pv-head {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--border);
}
.pv-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--black);
}
.pv-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--border);
}
.pvl-item {
  display: flex;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  transition: background .2s;
  align-items: flex-start;
}
.pvl-item:hover { background: var(--gold-pale); }
.pvl-item:nth-child(3n) { border-right: none; }
.pvl-item:nth-child(4),
.pvl-item:nth-child(5),
.pvl-item:nth-child(6) { border-bottom: none; }
.pvl-n {
  font-family: var(--font-ser);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--border);
  flex-shrink: 0;
  line-height: 1.2;
  transition: color .2s;
}
.pvl-item:hover .pvl-n { color: var(--gold-light); }
.pvl-item h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
  letter-spacing: -.01em;
  color: var(--black);
}
.pvl-item p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================================================
   PANEL 5 – KONTAKT
   ============================================================ */
.p-kontakt {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--border);
}
.pk-inner { display: contents; }
.pk-left {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid var(--border);
  min-height: 100vh;
  min-height: 100svh;
  justify-content: center;
  background: var(--bg);
}
.pk-left h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--black);
}
.pk-left h2 em {
  font-family: var(--font-ser);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.pk-left > p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.6;
}
.pk-contact-info {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
}
.pk-contact-info a {
  font-size: .9rem;
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pk-contact-info a:hover { color: var(--black); }
.pk-contact-info span {
  font-size: .8rem;
  color: var(--gray-light);
}

/* Formular */
.pk-right {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
}
.pk-form {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pkf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pkf-field input,
.pkf-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: .85rem 1rem;
  font-size: 1rem;
  color: var(--black);
  transition: border-color .2s, background .2s, box-shadow .2s;
  min-height: 48px;
  -webkit-appearance: none;
}
.pkf-field input::placeholder,
.pkf-field textarea::placeholder { color: var(--gray-light); }
.pkf-field input:focus,
.pkf-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,39,.1);
}
.pkf-field textarea { resize: vertical; min-height: 120px; }
.pkf-check label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .8rem;
  color: var(--gray);
  line-height: 1.55;
  cursor: pointer;
}
.pkf-check input[type="checkbox"] {
  width: 18px; height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 1px;
}
.pkf-check a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.pkf-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  transition: background .2s;
  min-height: 52px;
  border: none;
  cursor: pointer;
}
.pkf-submit:hover { background: var(--dark); }
.pkf-submit svg { width: 18px; height: 18px; transition: transform .2s; }
.pkf-submit:hover svg { transform: translateX(4px); }
.pkf-success {
  display: none;
  padding: .9rem 1.1rem;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 4px;
  font-size: .85rem;
  color: #166534;
  line-height: 1.5;
}
.pkf-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
}
.sf-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}
.sf-brand { font-size: .75rem; color: rgba(255,255,255,.4); }
.sf-links { display: flex; gap: 1.5rem; }
.sf-links a { font-size: .75rem; color: rgba(255,255,255,.45); transition: color .2s; }
.sf-links a:hover { color: var(--gold); }
.sf-copy { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  min-height: 100vh;
  padding-top: 60px;
  background: var(--white);
  color: var(--black);
}
.legal-header {
  background: var(--black);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem);
}
.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.legal-header p { font-size: .9rem; color: rgba(255,255,255,.5); margin-top: .5rem; }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 4vw, 4rem) 5rem;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 2.5rem;
  transition: color .2s;
}
.legal-back:hover { color: var(--black); }
.legal-back svg { width: 16px; height: 16px; }
.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2.5rem 0 .75rem;
  letter-spacing: -.01em;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p { font-size: .9rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: .75rem; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: .75rem; }
.legal-content ul li { font-size: .9rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: .35rem; list-style: disc; }
.legal-content a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE – MOBILE FIRST
   ============================================================ */

/* ── ≤ 1100px ─────────────────────────────────────────────── */
@media screen and (max-width: 1100px) {
  .pa-grid { grid-template-columns: 1fr 1fr 1fr; }
  .pag-item--wide { grid-column: 1 / -1; grid-row: auto; }
}

/* ── ≤ 900px ──────────────────────────────────────────────── */
@media screen and (max-width: 900px) {
  .p-intro { grid-template-columns: 1fr; }
  .p-intro-left { border-right: none; border-bottom: 1px solid var(--border); min-height: auto; padding-bottom: 3rem; }
  .p-intro-right { min-height: 50vh; padding: 2rem clamp(1.5rem, 4vw, 3rem) 3rem; background: var(--bg); }
  .p-kontakt { grid-template-columns: 1fr; }
  .pk-left { border-right: none; border-bottom: 1px solid var(--border); min-height: auto; }
  .pk-right { min-height: auto; }
  .pv-list { grid-template-columns: 1fr 1fr; }
  .pvl-item:nth-child(2n) { border-right: none; }
  .pvl-item:nth-child(3n) { border-right: 1.5px solid var(--border); }
  .pvl-item:nth-child(5),
  .pvl-item:nth-child(6) { border-bottom: none; }
  .pvl-item:nth-child(3),
  .pvl-item:nth-child(4) { border-bottom: 1.5px solid var(--border); }
  .ps-header { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .ps-header p { margin-left: 0; }
}

/* ── ≤ 768px ──────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  .tb-nav {
    display: none !important;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(249,247,244,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }
  .tb-nav.open { display: flex !important; }
  .tb-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    padding: 1.1rem .5rem;
    min-height: 60px;
    width: 100%;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: none !important;
  }
  .tb-nav a:hover { color: var(--gold-2); background: none !important; }
  .tb-burger { display: flex !important; }

  .pit-bold { font-size: clamp(3rem, 12vw, 5rem); }
  .pit-thin { font-size: clamp(2rem, 8vw, 3.5rem); }
  .pit-italic { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .pi-actions { flex-direction: column; align-items: stretch; }
  .pi-btn-main, .pi-btn-ghost { justify-content: center; }
  .ticker-board { max-width: 100%; }
  .tbr-val { font-size: 1.6rem; }

  .ps-card { flex: 0 0 clamp(240px, 75vw, 300px); }

  .pa-top { flex-direction: column; gap: .75rem; }
  .pa-num { font-size: 4rem; }
  .pa-grid { grid-template-columns: 1fr 1fr; }
  .pag-item--wide { grid-column: 1 / -1; }

  .pv-list { grid-template-columns: 1fr; }
  .pvl-item { border-right: none !important; }
  .pvl-item:nth-child(1),
  .pvl-item:nth-child(2),
  .pvl-item:nth-child(3),
  .pvl-item:nth-child(4),
  .pvl-item:nth-child(5) { border-bottom: 1.5px solid var(--border) !important; }
  .pvl-item:nth-child(6) { border-bottom: none !important; }
  .pv-head { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .pv-head .pa-num { font-size: 4rem; }

  .pkf-row { grid-template-columns: 1fr; }
  .pk-inner { display: flex; flex-direction: column; }

  .sf-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

/* ── ≤ 480px ──────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
  .pkf-field input,
  .pkf-field textarea { font-size: 1rem !important; }
  .pa-grid { grid-template-columns: 1fr; }
  .pit-bold { font-size: 2.8rem; word-break: break-word; hyphens: auto; }
  .pit-thin { font-size: 1.8rem; }
  .pit-italic { font-size: 1.5rem; }
  .ps-card { flex: 0 0 85vw; }
  .tb-row { padding: .9rem 1.1rem; }
  .tbr-val { font-size: 1.4rem; }
}

/* ── ≤ 360px ──────────────────────────────────────────────── */
@media screen and (max-width: 360px) {
  .tb-name em { display: none; }
  .pit-bold { font-size: 2.4rem; }
  .p-scroll-hint { display: none; }
  .pir-deco { display: none; }
}

/* ── Touch: Hover deaktivieren ────────────────────────────── */
@media (hover: none) {
  .ps-track { cursor: default; }
  .ps-card:hover { box-shadow: none; border-color: var(--border); transform: none; }
  .ps-card--featured:hover { background: var(--black); border-color: var(--black); transform: none; }
}
