﻿/* =========================================================
   OBJ – styles.css (FINAL | 2026)
   - Single source of truth (no duplicates)
   - Warm Luxe tokens (deep navy + gold/copper)
   - 2-line header, hero, flow sections
   - Legal pages styled (AGB/Haftung/Rechtliches)

   Inhaltsverzeichnis
   01) Fonts
   02) Tokens (:root)
   03) Base / Reset
   04) Layout helpers / Typography
   05) Header (Topbar + Mainbar + Nav)
   06) Hero (WOW)
   07) Sections (Welcome / Services / Dashboard / Concierge)
   08) Legal pages (Rechtliches, AGB, Haftung)
   09) Footer
   10) Responsive
   11) Presence (section-host)
========================================================= */

/* -----------------------------
   01) FONTS (local)
----------------------------- */
@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/ubuntu/Ubuntu-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/ubuntu/Ubuntu-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* -----------------------------
   02) TOKENS
----------------------------- */
:root {
  /* Font */
  --font-sans:
    "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Text (robust across Chrome/Firefox) */
  --text: #20252b;
  --text-strong: #161a1f;
  --text-muted: #3a424b;
  --text-soft: rgba(32, 37, 43, 0.86);
  --text-dark: #2b2f32;
  --text-light: #ffffff;

  /* Warm Luxe */
  --cream: #fffdf8;
  --sand-cream: #f4efe6;
  --sand-cream-dark: #e8e0d2;
  --sand-cream-edge: #e2d8c9;

  --ink: #1a1e23; /* Anthrazit */
  --muted: rgba(26, 30, 35, 0.68);
  --line: rgba(26, 30, 35, 0.1);

  --deep: #010d26; /* deep navy */
  --sea: #0b2a3d; /* soft navy */
  --sea2: #061b28; /* darker navy */

  --gold: #d8b36a;
  --copper: #c9895a;
  --mist: #eef2ef;

  --radius: 16px;
  --radius2: 22px;

  --shadow1: 0 10px 30px rgba(1, 13, 38, 0.1);
  --shadow2: 0 22px 60px rgba(1, 13, 38, 0.18);
}

/* -----------------------------
   03) BASE / RESET
----------------------------- */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}

html,
body {
  background: #ffffff;
  color-scheme: light;
}
html {
  font-family: var(--font-sans);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4 {
  font-weight: 650;
  letter-spacing: -0.01em;
}
/* ==============================
   GLOBAL HEADING COLOR (ohne Hero, Header, Footer)
   ============================== */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  color: #205373;
}

/* Hero ausschließen */
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6 {
  color: inherit;
}

/* Header Navigation ausschließen */
.site-header h1,
.site-header h2,
.site-header h3,
.site-header h4,
.site-header h5,
.site-header h6 {
  color: inherit;
}

/* Footer ausschließen */
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
  color: inherit;
}

/* Default text */
p,
li {
  color: var(--text-soft);
}

/* Focus ring – keyboard accessible */
:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid rgba(216, 179, 106, 0.9);
  outline-offset: 3px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.social-btn:focus-visible,
.support-link:focus-visible,
.nav-item:focus-visible {
  box-shadow: 0 0 0 4px rgba(201, 137, 90, 0.18);
  border-radius: 12px;
}
/* === LEISTUNGEN: Services Cards (LIGHT, clean) === */
/* ==============================
   SERVICES – Intro + Cards (Mobile First)
   ============================== */

/* Intro-Section: nur Headline/Text */
.services-intro {
  padding: clamp(70px, 8vw, 110px) 0 18px;
  background: transparent;
}

/* Cards-Section: eigener Block, aber NICHT dunkel */
/* === SERVICES CARDS: Premium Light Background === */
.services-cards {
  padding: clamp(40px, 6vw, 80px) 0 clamp(70px, 8vw, 110px);
  background: linear-gradient(180deg, #f7f6f3 0%, #f1f2f2 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Cards bleiben hell, aber klar abgegrenzt */
.services-cards .card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 45px rgba(1, 13, 38, 0.1);
}

/* Icon-Style: Premium Line */
.services-cards .card-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  color: rgba(26, 30, 35, 0.75); /* fein & edel */
}

.services-cards .card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.35; /* dünner = premium */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Cards Grid */
.card-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile */
  gap: 18px;
  margin-top: 26px;
}

/* Cards – hell, hochwertig, passend zu deinem Warm-Luxe */
.card {
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 40px rgba(1, 13, 38, 0.1);
  backdrop-filter: blur(6px);
}

.card-title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgba(26, 30, 35, 0.96) !important;
}

.card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(26, 30, 35, 0.8);
}

/* Optional: Bulletpoints (falls du sie wieder nutzt) */
.card-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
  color: rgba(26, 30, 35, 0.78);
}
.card-points li {
  position: relative;
  padding-left: 14px;
  line-height: 1.45;
}
.card-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  opacity: 0.75;
}

/* Icons – dunkel (weil light Cards) */
.card-icon {
  width: 22px !important;
  height: 22px !important;
  display: inline-flex !important;
  flex: 0 0 22px !important;
  opacity: 0.95 !important;
  color: rgba(26, 30, 35, 0.75); /* Light layout */
}
.card-icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  fill: none;
  stroke: currentColor !important; /* <-- Linien sichtbar */
  stroke-width: 1.35 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* Tablet: 2 Spalten */
@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .card {
    padding: 20px 20px 18px;
  }
}

/* Desktop: 3 Spalten */
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

/* Ruhiger Hover */
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 22px 60px rgba(1, 13, 38, 0.14);
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease;
  }
}

/* ==============================
   PRICING (Plans + Compare)
   ============================== */

.pricing {
  padding: clamp(42px, 6vw, 90px) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile */
  gap: 16px;
  margin-top: 26px;
}

.plan {
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
}

.plan-head {
  margin-bottom: 12px;
}

.plan h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.plan-sub {
  margin: 0;
  opacity: 0.9;
}

.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 10px;
  opacity: 0.85;
}

.badge-soft {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 8px;
  opacity: 0.95;
}

.plan-list li {
  position: relative;
  padding-left: 14px;
  line-height: 1.45;
}

.plan-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  opacity: 0.9;
}

.hint {
  margin: 0;
  opacity: 0.85;
  font-size: 14px;
}

/* Featured (Premium) - ruhig hervorheben */
.plan.is-featured {
  transform: none !important;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 60px rgba(1, 13, 38, 0.14);
}

/* Compare Table */
.compare {
  margin-top: 26px;
}

.compare-title {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

/* ==============================
   COMPARE – FIX: Wrapper-Klasse vereinheitlichen
   (damit Mobile Stack wirklich greift)
   ============================== */

/* table-wrap soll sich wie compare-wrapper verhalten */
.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(1, 13, 38, 0.1);
}

/* compare-title auf Mobile sauber platzieren */
@media (max-width: 720px) {
  .compare-title {
    margin: 0 0 14px !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
  }

  /* WICHTIG: Mobile Stack auch für table-wrap aktivieren */
  .table-wrap {
    overflow: visible !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
  }

  .table-wrap .compare-table {
    min-width: 0 !important;
    background: transparent !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
  }

  .table-wrap .compare-table thead {
    display: none !important;
  }

  .table-wrap .compare-table tbody tr {
    display: block !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 16px !important;
    box-shadow: 0 16px 40px rgba(1, 13, 38, 0.1) !important;
    overflow: hidden !important;
  }

  .table-wrap .compare-table tbody th[scope="row"] {
    display: block !important;
    padding: 14px 14px 10px !important;
    font-weight: 700 !important;
    color: #205373 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    background: rgba(32, 83, 115, 0.06) !important;
    text-align: left !important;
  }

  .table-wrap .compare-table tbody td {
    display: grid !important;
    grid-template-columns: 110px 1fr !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 14px !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    font-size: 14px !important;
  }

  .table-wrap .compare-table tbody td:last-child {
    border-bottom: none !important;
  }

  .table-wrap .compare-table tbody td::before {
    content: attr(data-label) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    color: rgba(26, 30, 35, 0.65) !important;
  }

  .table-wrap .compare-table tbody td[data-label="Premium"] {
    background: rgba(32, 83, 115, 0.04) !important;
    font-weight: 700 !important;
  }
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px; /* mobile scroll */
}

.compare-table th,
.compare-table td {
  padding: 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.compare-table thead th {
  font-weight: 500;
  opacity: 0.95;
}

.compare-table tbody th {
  font-weight: 400;
  opacity: 0.92;
}

.compare-table td {
  text-align: center;
  opacity: 0.95;
}

.compare-table .sep th,
.compare-table .sep td {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.compare-table td:nth-child(4) {
  background: rgba(14, 58, 64, 0.05);
  font-weight: 600;
}

.muted {
  opacity: 0.75;
  font-weight: 400;
}

.col-premium {
  opacity: 1;
}

.compare-note {
  margin: 12px 0 0;
  font-size: 14px;
  opacity: 0.86;
  max-width: 75ch;
}

/* Responsive grid */
@media (min-width: 700px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

/* Hover - nur wo Hover existiert */
@media (hover: hover) and (pointer: fine) {
  .plan:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.26);
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease;
  }
}
/* ==============================
   PRICING NOTE (Section 3)
   ============================== */

.pricing-note {
  padding: clamp(42px, 6vw, 90px) 0;
}

.note-card {
  margin-top: 26px;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  max-width: 1000px;
}

.note-card p {
  margin: 0 0 12px;
  line-height: 1.6;
  opacity: 0.95;
}

.note-points {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 8px;
  opacity: 0.92;
}

.note-points li {
  position: relative;
  padding-left: 14px;
  line-height: 1.45;
}

.note-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  opacity: 0.9;
}

.note-quiet {
  margin: 18px;
  font-size: 14px;
  font-style: italic;
  opacity: 0.75;
}
/* ==============================
   VERGLEICHSTABELLE – PREMIUM
   ============================== */

.compare-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.compare-title {
  margin-bottom: 24px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.compare-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(1, 13, 38, 0.1);
}

/* Table Base */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #ffffff;
}

.compare-table th,
.compare-table td {
  padding: 18px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.compare-table th[scope="row"] {
  text-align: left;
  font-weight: 500;
  color: rgba(26, 30, 35, 0.92);
}

/* Kopfzeilen */
.col-head {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  padding: 16px;
  color: #fff;
}

/* Individuelle Hintergrundfarben */
.col-feature {
  background: #1e2b30;
}

.col-basic {
  background: #394a52;
}

.col-plus {
  background: #2f5f68;
}

.col-premium {
  background: #0e3a40;
}

/* ✓ Styling */
.compare-table td {
  font-size: 16px;
  color: rgba(26, 30, 35, 0.85);
}

/* Gruppen-Trennung */
.group-divider th,
.group-divider td {
  border-top: 2px solid rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 56vh;
    background-position: 50% 25%;
  }
  .compare-table {
    font-size: 14px;
  }
}

/* -----------------------------
   04) LAYOUT HELPERS / TYPO
----------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.container.narrow {
  max-width: 880px;
}

.site-main {
  min-height: 60vh;
  background: transparent;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 30, 35, 0.62);
  margin: 0 0 10px;
}
.h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
}
.lead {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(26, 30, 35, 0.78);
  margin: 0;
  max-width: 78ch;
}
.small {
  font-size: 12px;
  color: var(--muted);
}

/* Dark areas (scoped correctly) */
.site-footer,
.section-dark {
  color: #ffffff;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

/* Topbar is dark → keep white text there */
.topbar,
.topbar a,
.topbar span {
  color: rgba(255, 255, 255, 0.92);
}

/* -----------------------------
   05) HEADER (2-line)
----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: transparent;
  border-bottom: 1px solid var(--line);
}
.site-header::before {
  content: none !important;
}

/* TOPBAR */
.topbar {
  background: linear-gradient(90deg, #061b28 0%, #0a2a3a 45%, #0b3a34 100%);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  font-size: 12px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sep {
  color: rgba(255, 253, 248, 0.45);
}

.topbar a:hover {
  color: #fff;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}
.icon-svg {
  width: 14px;
  height: 14px;
  display: inline-flex;
  color: rgba(255, 253, 248, 0.92);
}

/* Social buttons */
.social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}
.social-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.social-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}
.social-btn:hover {
  background: rgba(216, 179, 106, 0.14);
  border-color: rgba(201, 137, 90, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Support pill */
.support-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.support-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-icon img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}
.support-link:hover {
  background: linear-gradient(
    135deg,
    rgba(216, 179, 106, 0.2),
    rgba(201, 137, 90, 0.14)
  );
  border-color: rgba(216, 179, 106, 0.55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}
.support-link:hover .support-icon {
  background: rgba(255, 255, 255, 0.22);
}

/* MAINBAR */
.header-inner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 10px 0;
  background: rgba(255, 253, 248, 0.7);
  backdrop-filter: blur(8px);
}

.brand img {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  box-shadow: var(--shadow1);
}

/* NAV */
.nav-toggle {
  display: none; /* shown in mobile */
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 253, 248, 0.75);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}
.nav {
  display: flex;
  align-items: center;
  padding-right: 16px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(26, 30, 35, 0.72); /* FIX: not white */
  letter-spacing: 0.12px;
  position: relative;
  padding: 8px 0;
  transition: color 0.18s ease;
}
.header-inner .nav .nav-item:hover {
  color: rgba(26, 30, 35, 0.95);
}

.nav-item img {
  width: 15px;
  height: 15px;
  opacity: 1 !important;
}

/* underline */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.nav-item:hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}

/* Active underline */
.nav-item.is-active {
  color: rgba(26, 30, 35, 0.95);
}
.nav-item.is-active::after {
  opacity: 1;
  transform: scaleX(1);
  background: linear-gradient(
    90deg,
    rgba(159, 227, 211, 0.95),
    rgba(159, 227, 211, 0.35)
  );
}

/* Eigentümerportal Button im Header (Zeile 2) */
/* ==============================
   NAV CTA – Eigentümerportal
   ============================== */

.nav-item.nav-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 999px;

  background: linear-gradient(135deg, #d89a2b 0%, #f1c15b 100%);
  color: #fff !important;

  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;

  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

/* Icon weiß */
.nav-item.nav-portal img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* Hover */
.nav-item.nav-portal:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  filter: saturate(1.02);
}

/* Active (falls du is-active nutzt) */
.nav-item.nav-portal.is-active {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

/* -----------------------------
   06) HERO WOW
----------------------------- */
.hero-wow {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 86px 0 72px;
  border-bottom: 1px solid var(--line);

  background-image: url("/assets/img/hero-juist-blur.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 28%;
}

.hero-wow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 13, 38, 0.5) 0%,
    rgba(11, 42, 61, 0.25) 52%,
    rgba(1, 13, 38, 0.45) 100%
  );
}
.hero-wow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    900px 420px at 55% 18%,
    rgba(216, 179, 106, 0.22) 0%,
    rgba(201, 137, 90, 0.12) 32%,
    rgba(201, 137, 90) 70%
  );
}

@media (min-width: 1600px) {
  .hero-wow {
    min-height: 66vh;
    background-position: center 22%;
  }
}

.hero-wow-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 700;
  letter-spacing: -0.025em;
  word-spacing: -0.08em;
  background: linear-gradient(
    180deg,
    rgba(255, 253, 248, 0.98) 0%,
    rgba(216, 179, 106, 0.92) 52%,
    rgba(255, 253, 248, 0.96) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: #fff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-wow .hero-sub {
  margin: 0;
  max-width: 64ch;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 600;
  color: #ffffff !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.hero-wow .hero-lead {
  color: #fff !important;
}

.hero-underline {
  margin-top: 18px;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 137, 90, 0.85));
  box-shadow: 0 10px 30px rgba(201, 137, 90, 0.22);
}
/* ==============================
   HERO SYSTEM (OBJ)
   ============================== */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  padding-top: clamp(90px, 12vw, 160px);
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  /* ✅ sauber getrennt: Bild + Fokuspunkt */
  background-image: var(--hero-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--hero-focus, 50% 50%);

  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero,
.hero h1,
.hero .lead,
.hero .kicker,
.hero a {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero .kicker {
  margin: 0 0 10px 0;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero__title {
  font-size: clamp(46px, 6vw, 76px);
}
.hero .lead {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.95;
  margin: 0 0 22px 0;
  max-width: 62ch;
  opacity: 0.92;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px 0;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0.9;
}

.hero__trust li {
  padding-left: 14px;
  position: relative;
}

.hero__trust li::before {
  content: "•";
  position: absolute;
  left: 0;
  opacity: 0.9;
}
.hero.hero--leistungen .hero__inner,
.hero.hero--concierge .hero__inner {
  transform: translateY(-4vh);
}

/* ==============================
   HERO VARIANTS (per page)
   You only change --hero-bg
   ============================== */

.hero--leistungen {
  --hero-bg: url("/assets/img/hero-leistung.png");
  background-size: cover;
  background-position: center;
}
/* -----------------------------
   Hero - Concierge
----------------------------- */
.hero--concierge {
  background-image: url("/assets/img/concierge/hero-concierge.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
}

.hero--concierge .hero__title {
  font-family: "Great Vibes", cursive;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero-script {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}

.hero-serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin-left: 6px;
}
.hero--concierge .hero__title {
  color: #f5e7c9;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(216, 179, 106, 0.35);
}

@media (max-width: 900px) {
  .hero--concierge {
    background-position: 60% center;
  }
}
/* === Concierge Herz-Section === */
.concierge-heart {
  background: linear-gradient(
    180deg,
    rgba(255, 253, 248, 0.75) 0%,
    rgba(244, 239, 230, 0.92) 100%
  );
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.concierge-heart__head {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: left;
}

.concierge-heart__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.concierge-moment {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 45px rgba(1, 13, 38, 0.1);
}

.concierge-moment__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.concierge-moment__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concierge-moment__body {
  padding: 14px 16px 16px;
}
.concierge-moment__body h3 {
  margin: 0 0 6px;
}
.concierge-moment__body p {
  margin: 0;
}

.concierge-heart__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

* Valentines-Box: Background darf nicht "zusammenfallen" */
.concierge-heart__box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;

  /* DAS ist der Gamechanger */
  min-height: 360px;
  padding: 36px;
  background: url("/assets/img/concierge/valentinstag.png") center / cover
    no-repeat;
}

/* Overlay für Lesbarkeit */
.concierge-heart__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2));
}

/* Text über dem Overlay */
.concierge-heart__box > * {
  position: relative;
  z-index: 1;
}

.concierge-heart__list {
  margin: 10px 0 12px 18px;
  line-height: 1.85;
}

.concierge-heart__note {
  margin: 10px 0 0;
  opacity: 0.9;
}

.concierge-heart__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.concierge-heart__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 820px) {
  .concierge-heart__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .concierge-moment {
    grid-template-columns: 1fr;
  }
  .concierge-heart__split {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .concierge-heart__box {
    min-height: 280px;
    padding: 22px;
    background-position: 55% 40%;
  }
}

/* -----------------------------
   Hero - Kontakt (FINAL)
----------------------------- */
.hero--kontakt {
  background-image: url("/assets/img/kontakte/kontakt.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
}

.hero--kontakt .hero__inner {
  position: absolute;
  top: 32%; /* Höhe – anpassen */
  left: 60%; /* weiter nach rechts */
  width: 700px;
  margin-top: 14vh; /* steuert die vertikale Position */
  transform: translate(-50%, -50%); /* höher Richtung Wasser */
  text-align: center;
}

/* Haupttitel */
.hero--kontakt h1 {
  font-size: clamp(80px, 6vw, 120px);
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Untertitel */
.hero--kontakt .lead {
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 400;
  opacity: 0.95;
  margin: 0 auto; /* wichtig */
  max-width: 700px; /* damit er exakt unter H1 sitzt */
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
/* Tablet: etwas weniger rechts + etwas tiefer */
@media (max-width: 1100px) {
  .hero--kontakt .hero__inner {
    top: 34%;
    left: 55%;
    width: min(640px, 92vw);
  }
}

/* Mobile: wieder klassisch mittig, volle Kontrolle */
@media (max-width: 640px) {
  .hero--kontakt {
    min-height: 62vh;
  }

  .hero--kontakt .hero__inner {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92vw;
    padding: 0 10px;
  }

  .hero--kontakt h1 {
    font-size: clamp(44px, 10vw, 64px);
    margin-bottom: 10px;
  }

  .hero--kontakt .lead {
    font-size: 16px;
    max-width: 32ch; /* verhindert zu lange Zeile */
    margin: 0 auto;
  }
}

/* Sehr kleine Geräte */
@media (max-width: 380px) {
  .hero--kontakt .hero__inner {
    top: 28%;
  }
  .hero--kontakt .lead {
    font-size: 15px;
  }
}
/* === Kontakt: 2 Cards Layout === */
.contact-section {
  background: #f6f4ef; /* ruhiges warmes Off-White */
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  pointer-events: none;
}
.contact-section .container {
  max-width: 1100px;
}

.btn-elegant {
  background: transparent;
  border: 1px solid #1f3f4a;
  color: #1f3f4a;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-elegant:hover {
  background: #1f3f4a;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}
.contact-grid .card {
  height: 100%;
  padding: 40px 42px;
  background: #ffffff;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
}
.contact-card .contact-item {
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.contact-title {
  font-weight: 500; /* nicht mehr bold */
  margin-bottom: 14px;
}
.contact-card .muted {
  margin-bottom: 24px;
  font-weight: 400;
  opacity: 0.75;
}
.contact-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.contact-item {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}

.contact-value {
  font-weight: 400; /* kein starkes bold */
  font-size: 16px;
}

/* [CLEANUP] removed duplicate block .contact-actions */

.contact-divider {
  margin: 18px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
/* Telefon & Mail blau */
.contact-value[href^="tel:"],
.contact-value[href^="mailto:"] {
  color: #2f6f8f;
  font-weight: 500;
}

.contact-value[href^="tel:"]:hover,
.contact-value[href^="mailto:"]:hover {
  opacity: 0.8;
}
/* ===== Nur Icon Social ===== */

.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f4f2ec, #e9e5dc);
  color: #1f3f4a;
  font-size: 17px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.05),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.contact-icon:hover {
  background: #1f3f4a;
  color: white;
  transform: translateY(-3px);
}
/* Formular: 2 Spalten in einer Zeile */
/* ===== Formular: lesbar & modern ===== */
.form {
  display: grid;
  gap: 20px;
}
/* Überschrift weniger dominant */
.contact-grid .card:nth-child(2) h2 {
  font-weight: 500;
}
.form label {
  display: grid;
  gap: 10px;
  font-weight: 400;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
}

.form textarea {
  resize: vertical;
}

/* 2 Spalten nur für die kleine Reihe */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Checkbox: nicht so breitgezogen/komisch */
.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 400;
}
.checkbox input {
  margin-top: 4px;
}
/* Datenschutzhinweis dezenter */
.form .muted {
  font-weight: 400;
  opacity: 0.7;
}
.form input,
.form textarea {
  font-weight: 400;
}
/* Button unten, mit Abstand */
.form .btn {
  margin-top: 6px;
  justify-self: start;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr; /* Cards untereinander */
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr; /* Telefon/Objekt untereinander */
  }
}
/* -----------------------------
   Hero - AGB
----------------------------- */
/* Rechtliches: ruhiger, neutraler Look */
.hero--agb {
  --hero-bg:
    radial-gradient(
      900px 500px at 15% 10%,
      rgba(255, 255, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 30%,
      rgba(255, 255, 255, 0.06),
      transparent 65%
    );
}
/* -----------------------------
   Hero - Impressum
----------------------------- */
.hero--impressum {
  --hero-bg:
    radial-gradient(
      900px 500px at 20% 10%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 75% 35%,
      rgba(255, 255, 255, 0.05),
      transparent 65%
    );
}

/* -----------------------------
   07) SECTIONS
----------------------------- */
.section {
  padding: 66px 0;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 36px);
}

.section.band {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#welcome,
#willkommen {
  scroll-margin-top: 110px;
}

/* Welcome */
.welcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .welcome-grid {
    grid-template-columns: 1fr;
  }
}
.welcome-text p {
  max-width: 52ch;
}

.welcome-note {
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius2);
  padding: 26px 28px;
  box-shadow: var(--shadow1);
}
.note-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
  font-weight: 700;
}

/* Services */
.services-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas: "media copy";
  gap: 48px;
  align-items: center;
}
.service-row.reverse {
  grid-template-areas: "copy media";
}

.service-media {
  grid-area: media;
}
.service-copy {
  grid-area: copy;
}

.service-media {
  aspect-ratio: 4 / 3;
  max-width: 380px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#leistungen {
  border-bottom: 1px solid var(--line);
  background: var(--sand-cream-dark);
}
.section-leistungen {
  background: var(--sand-cream-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: #1a1e23;
}
.section-leistungen p {
  color: rgba(26, 30, 35, 0.85);
}
.section-leistungen img {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Textlink */
.service-cta,
.host-cta,
.dashboard-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(26, 30, 35, 0.9);
  border-bottom: 1px solid rgba(216, 179, 106, 0.55);
  padding-bottom: 2px;
}
.service-cta:hover,
.host-cta:hover,
.dashboard-cta:hover {
  border-bottom-color: rgba(201, 137, 90, 0.75);
}
.service-cta::after,
.host-cta::after,
.dashboard-cta::after {
  content: "→";
  font-size: 12px;
  opacity: 0.6;
  transform: translateY(0.5px);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.service-cta:hover::after,
.host-cta:hover::after,
.dashboard-cta:hover::after {
  transform: translateX(3px);
  opacity: 0.9;
}

/* Services mobile */
@media (max-width: 900px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy";
    gap: 18px;
  }
  .service-media {
    width: 100%;
    max-width: none;
    aspect-ratio: 16/10;
  }
}

/* Dashboard strip */
.dashboard-strip {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.6fr;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  border-radius: var(--radius2);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}
.dashboard-text {
  transform: translateY(-6%);
}

.dashboard-visual img {
  width: 145%;
  max-width: none;
  transform: translate(-4%, 3%);
}

@media (max-width: 1024px) {
  .dashboard-strip {
    grid-template-columns: 1fr 1.4fr;
  }
  .dashboard-text {
    transform: translateY(-3%);
  }
  .dashboard-visual img {
    width: 110%;
  }
}
@media (max-width: 900px) {
  .dashboard-strip {
    grid-template-columns: 1fr;
  }
  .dashboard-visual img {
    width: 100%;
  }
  .dashboard-visual {
    transform: none;
  }
}
@media (max-width: 768px) {
  .dashboard-strip {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .dashboard-text,
  .dashboard-visual {
    transform: none;
  }
  .dashboard-visual img {
    width: 100%;
    max-width: 100%;
  }
}

/* KPI */
.kpi {
  padding: 14px 14px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.55)
  );
  border: 1px solid rgba(1, 13, 38, 0.1);
}
.kpi .label {
  font-size: 12px;
  color: rgba(26, 30, 35, 0.62);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.kpi .value {
  font-size: 18px;
  font-weight: 700;
  color: rgba(26, 30, 35, 0.95);
  margin: 0;
}

/* Concierge */
.concierge-panel {
  padding: 150px 0 170px;
  background: linear-gradient(90deg, #061b28 0%, #0a2a3a 45%, #0b3a34 100%);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}

/* Force all concierge text to white-family */
.concierge-panel,
.concierge-panel h1,
.concierge-panel h2,
.concierge-panel h3,
.concierge-panel h4,
.concierge-panel p,
.concierge-panel span,
.concierge-panel strong,
.concierge-panel a,
.concierge-panel li {
  color: rgba(255, 255, 255, 0.9);
}

.concierge-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}
.concierge-kicker {
  display: inline-block;
  letter-spacing: 0.22em;
  font-size: 12px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.concierge-title {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 520;
}
.concierge-sub {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* Layout */
.concierge-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.concierge-col {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84); /* FIX: was dark text */
}
.concierge-lead {
  font-size: 16px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

/* Points (left line, but subtle) */
.concierge-points {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 14px;
}
.concierge-points li {
  margin: 0 0 14px;
}
.concierge-points span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.concierge-points em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.74);
  margin-left: 6px;
}

/* Media */
.concierge-media {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08); /* FIX: not creamy white on dark bg */
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.22);
}
.concierge-media img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
}

/* Right side */
.concierge-body {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
}
.concierge-end {
  margin: 26px 0 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92); /* FIX: was dark */
}

/* CTA */
.concierge-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}
.concierge-cta::after {
  content: "→";
  transform: translateY(-1px);
  opacity: 0.85;
}
.concierge-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(216, 179, 106, 0.55);
}

/* Concierge responsive */
@media (max-width: 1024px) {
  .concierge-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .concierge-title {
    font-size: 34px;
  }
  .concierge-head {
    margin-bottom: 44px;
  }
}
@media (max-width: 768px) {
  .concierge-panel {
    padding: 95px 0 110px;
  }
  .concierge-sub {
    font-size: 16px;
  }
}

/* -----------------------------
   08) LEGAL PAGES
----------------------------- */
.page {
  padding: 26px 0 56px;
}
.page-head {
  margin: 18px 0 26px;
}
.page-head h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.01em;
}
.legal h2 {
  margin: 22px 0 10px;
  font-size: 16px;
}
.legal p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.85;
}
.legal ul {
  margin: 10px 0 14px 18px;
  color: var(--muted);
  line-height: 1.85;
}
.legal a {
  text-decoration: underline;
}
.legal-note {
  margin-top: 18px;
  font-size: 12px;
  opacity: 0.85;
}

.legal-overview {
  display: grid;
  gap: 26px;
}
.legal-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.55);
}
.legal-item.subtle {
  background: rgba(255, 255, 255, 0.35);
}
.legal-item h2 {
  margin: 0 0 6px;
  font-size: 16px;
}
.legal-item p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.legal-item a {
  font-size: 12px;
  text-decoration: underline;
}

/* -----------------------------
   09) FOOTER
----------------------------- */
.site-footer {
  margin-top: 0;
  padding: 40px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #061b28 0%, #0a2a3a 45%, #0b3a34 100%);
  color: rgba(255, 255, 255, 0.92);
}

.site-footer *,
.site-footer p,
.site-footer a,
.site-footer span,
.site-footer li {
  color: rgba(255, 255, 255, 0.88);
}
.site-footer a:hover {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 26px;
  padding-bottom: 18px;
}
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
    justify-items: center;
  }
  .footer-grid * {
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-h {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 700;
}
.footer-p {
  font-size: 12px;
  line-height: 1.7;
  margin: 0 0 10px;
}
.footer-p strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.footer-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.footer-social-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}
.footer-social-btn:hover {
  transform: translateY(-1px);
  background: rgba(216, 179, 106, 0.14);
  border-color: rgba(216, 179, 106, 0.35);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy,
.footer-legal {
  font-size: 9px;
  letter-spacing: 0.04em;
  color: rgba(255, 253, 248, 0.7);
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
}
.footer-legal a:hover {
  color: var(--gold);
}
.footer-dot {
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-claim {
  display: block;
  font-size: 11px;
  margin: 4px 0 10px;
  color: rgba(255, 253, 248, 0.78);
  letter-spacing: 0.04em;
}

/* -----------------------------
   10) RESPONSIVE (Mobile Header + Nav + Hero)
----------------------------- */
@media (max-width: 820px) {
  /* Topbar compact */
  .topbar {
    display: block;
  }
  .topbar-inner {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 8px 0;
  }
  .social {
    display: none;
  }
  .sep {
    display: none;
  }
  .topbar-left {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .topbar-right {
    margin-left: auto;
  }

  /* Header */
  .header-inner {
    position: relative;
  }
  .brand img {
    width: 60px;
    height: 60px;
  }

  /* Hamburger */
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 10000;
  }
  .nav-toggle svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  /* Nav dropdown */
  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    z-index: 9999;
  }
  .nav.is-open {
    display: flex;
  }

  .nav-item {
    margin: 0;
    padding: 12px 10px;
    border-radius: 14px;
    color: rgba(26, 30, 35, 0.9);
  }
  .nav-item + .nav-item {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .nav-portal {
    margin-left: 0;
    margin-top: 10px;
    justify-content: center;
  }

  /* Hero */
  .hero-wow {
    padding: 64px 0 56px;
    min-height: 56vh;
  }
}

/* -----------------------------
   11) Presence (section-host)
----------------------------- */
.section-host {
  background: linear-gradient(
    180deg,
    var(--sand-cream-dark) 0%,
    var(--sand-cream-dark) 65%,
    var(--sand-cream-edge) 100%
  );
  color: #1a1e23;
  padding: clamp(7rem, 12vw, 10rem) 0;
}
.section-host p {
  color: rgba(26, 30, 35, 0.85);
}

.presence-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.presence-img img {
  border-radius: 18px;
  box-shadow: var(--shadow1);
}
.presence-text {
  text-align: center;
  max-width: 42ch;
  margin: 0 auto;
  color: #1a1e23;
}
.presence-text p {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .presence-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* === Valentine Infobox (Background + Lesbarkeit) === */
.infobox--valentine {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(18px, 2.5vw, 28px);
  color: #fff;

  background-image: var(--val-bg);
  background-size: contain;
  background-position: center;
  box-shadow: 0 22px 60px rgba(1, 13, 38, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Lesbarkeit über Bild (wichtig, damit kein Durcheinander) */
.infobox--valentine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.28) 100%
  );
  z-index: 0;
}

/* Goldene Partikel (kein Emoji) */
.infobox--valentine::after {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;

  /* Partikel-Layer aus Radialgradients */
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(216, 179, 106, 0.55) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(216, 179, 106, 0.42) 0 1.6px,
      transparent 3px
    ),
    radial-gradient(
      circle at 55% 35%,
      rgba(216, 179, 106, 0.5) 0 2.2px,
      transparent 3.6px
    ),
    radial-gradient(
      circle at 75% 60%,
      rgba(216, 179, 106, 0.38) 0 1.4px,
      transparent 3px
    ),
    radial-gradient(
      circle at 88% 25%,
      rgba(216, 179, 106, 0.46) 0 2px,
      transparent 3.6px
    ),
    radial-gradient(
      circle at 15% 88%,
      rgba(216, 179, 106, 0.32) 0 1.2px,
      transparent 3px
    );

  filter: blur(0.2px);
  animation: goldDrift 14s linear infinite;
  transform: translate3d(0, 0, 0);
}

/* Content über Overlay & Partikeln */
.infobox--valentine .infobox__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

/* Dezenter Glanz auf Headline/Text (nicht kitschig) */
.infobox--valentine h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
}

.infobox--valentine h3::after {
  content: "";
  position: absolute;
  left: -30%;
  top: -40%;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: rotate(12deg);
  opacity: 0;
  animation: textShine 5.5s ease-in-out infinite;
}

.infobox--valentine .infobox__lead {
  margin: 0 0 14px;
  opacity: 0.95;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

/* Badge */
.infobox--valentine .infobox__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* CTA */
.infobox--valentine .infobox__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* === ROTE SVG-HERZEN (fliegend + Wind) === */
.v-heart {
  position: absolute;
  z-index: 2; /* über Partikel, unter Content ok – wenn du willst z=3 */
  pointer-events: none;
  opacity: 0.22;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.28));
  animation: heartFloat 9s linear infinite;
}

.v-heart__svg {
  width: 34px;
  height: 34px;
  display: block;
}

.v-heart__svg path {
  fill: rgba(220, 60, 90, 0.95); /* ❤️ Rot */
}

/* Positionen + Größen */
.v-heart--1 {
  left: 8%;
  bottom: -50px;
  transform: scale(1);
  animation-delay: 0s;
}
.v-heart--2 {
  left: 26%;
  bottom: -70px;
  transform: scale(0.75);
  animation-delay: 2.3s;
  opacity: 0.18;
}
.v-heart--3 {
  left: 62%;
  bottom: -60px;
  transform: scale(0.95);
  animation-delay: 4.1s;
  opacity: 0.2;
}
.v-heart--4 {
  left: 82%;
  bottom: -80px;
  transform: scale(0.7);
  animation-delay: 1.1s;
  opacity: 0.16;
}

/* Wind (seitliches Driften + leichtes Wackeln) */
@keyframes heartFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.24;
  }
  50% {
    transform: translate3d(18px, -320px, 0) rotate(6deg) scale(1.06);
    opacity: 0.22;
  }
  100% {
    transform: translate3d(32px, -720px, 0) rotate(10deg) scale(1.12);
    opacity: 0;
  }
}

/* Goldpartikel-Wind */
@keyframes goldDrift {
  0% {
    transform: translate3d(-1%, 0, 0);
  }
  50% {
    transform: translate3d(2%, -2%, 0);
  }
  100% {
    transform: translate3d(-1%, 0, 0);
  }
}

/* Text-Glanz (dezent) */
@keyframes textShine {
  0%,
  70% {
    opacity: 0;
    transform: translateX(-20%) rotate(12deg);
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%) rotate(12deg);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .infobox--valentine::after,
  .v-heart,
  .infobox--valentine h3::after {
    animation: none !important;
  }
}
/* Reveal-Fallback: wenn irgendwas schiefgeht, nie unsichtbar bleiben */
/* [CLEANUP] removed duplicate block .reveal */

.js /* [CLEANUP] removed duplicate block .reveal */

.js .reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
html,
body {
  background: #fff !important;
  color-scheme: light;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}


