:root {
  --black: #111111;
  --dark: #1b1b1b;
  --anthracite: #242424;
  --gold: #d4af37;
  --gold-dark: #b89326;
  --white: #ffffff;
  --cream: #f6f1e7;
  --light: #f7f7f7;
  --muted: #6f6f6f;
  --border: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: max-content;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.navigation a {
  transition: color 0.2s ease;
}

.navigation a:hover {
  color: var(--gold);
}


/* Sprach-Dropdown im Header */
.language-switch {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.language-switch select {
  width: auto;
  min-width: 128px;
  margin: 0;
  padding: 9px 36px 9px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--black);
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  outline: none;
}

.language-switch select:hover,
.language-switch select:focus {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #e0bd4b;
}

.btn.small {
  padding: 11px 18px;
  font-size: 0.92rem;
  min-width: max-content;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.32)),
    url("bild1.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  left: -8%;
  bottom: -170px;
  width: 118%;
  height: 330px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 65% 65% 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 110px 0 170px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.28);
  font-weight: 700;
  font-size: 0.92rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 820px;
}

.hero-info div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.hero-info strong,
.hero-info span {
  display: block;
}

.hero-info strong {
  color: var(--white);
}

.hero-info span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -66px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-grid span {
  padding: 26px 20px;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid var(--border);
}

.trust-grid span:last-child {
  border-right: 0;
}

.section {
  padding: 105px 0;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-intro {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.price-card,
.step,
.form,
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
}

.card {
  padding: 26px;
  min-height: 190px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
}

.card h3,
.price-card h3,
.step h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.card p,
.price-card p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.prices-section {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  padding-top: 150px;
}

.prices-section::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -140px;
  width: 120%;
  height: 260px;
  background: var(--cream);
  border-radius: 0 0 50% 50% / 0 0 60% 60%;
}

.prices-section .container {
  position: relative;
  z-index: 2;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 28px;
  background: #222222;
  border-color: rgba(255, 255, 255, 0.10);
}

.price-card.highlight {
  background: linear-gradient(145deg, #2c2c2c, #161616);
  border-color: rgba(212, 175, 55, 0.56);
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: 0.78rem;
}

.price {
  margin: 12px 0 12px;
  color: var(--gold) !important;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.70);
}

.small-price {
  font-size: 1.65rem;
}

.price-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.about-section {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.about-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--anthracite);
  min-height: 390px;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.about-text p {
  color: var(--muted);
  font-size: 1.06rem;
}

.steps-section {
  background: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.step {
  padding: 30px;
}

.step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.contact-section {
  background: linear-gradient(135deg, #151515, #2a2a2a);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.contact-box {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-box p {
  margin-bottom: 10px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-box a {
  color: var(--gold);
}

.form {
  padding: 28px;
  background: var(--white);
  color: var(--black);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  margin-bottom: 14px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  background: #fafafa;
  color: var(--black);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.honeypot {
  display: none;
}

.footer {
  padding: 30px 0;
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .navigation {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-info,
  .trust-grid,
  .cards,
  .price-grid,
  .steps,
  .about-grid,
  .contact-grid,
  .section-head {
    grid-template-columns: 1fr 1fr;
  }

  .hero-info {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header {
    position: sticky;
  }

  .nav {
    min-height: auto;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text span {
    font-size: 0.62rem;
  }

  .btn.small {
    display: none;
  }

  .navigation {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.62)),
      url("bild1.png") center / cover no-repeat;
  }

  .hero-content {
    padding: 78px 0 150px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-info,
  .trust-grid,
  .cards,
  .price-grid,
  .steps,
  .about-grid,
  .contact-grid,
  .section-head,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-grid span {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-grid span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .price {
    font-size: 2rem;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* WhatsApp Icon Header - finale robuste Variante */
.header .header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header .palma-whatsapp-icon,
.palma-whatsapp-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  flex: 0 0 44px !important;
  position: relative !important;
  z-index: 9999 !important;
}

.header .palma-whatsapp-icon svg,
.palma-whatsapp-icon svg {
  display: block !important;
  width: 27px !important;
  height: 27px !important;
  fill: #ffffff !important;
  color: #ffffff !important;
}

.header .palma-whatsapp-icon:hover,
.palma-whatsapp-icon:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (max-width: 680px) {
  .header .header-actions {
    width: auto !important;
    margin-left: auto !important;
    justify-content: flex-end !important;
  }

  .header .palma-whatsapp-icon,
  .palma-whatsapp-icon {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;
  }
}


/* Einheitlicher Header: WhatsApp + Anrufen */
.header .header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header .palma-whatsapp-icon,
.palma-whatsapp-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  flex: 0 0 44px !important;
  position: relative !important;
  z-index: 9999 !important;
}

.header .palma-whatsapp-icon svg,
.palma-whatsapp-icon svg {
  display: block !important;
  width: 27px !important;
  height: 27px !important;
  fill: #ffffff !important;
  color: #ffffff !important;
}

.header .palma-whatsapp-icon:hover,
.palma-whatsapp-icon:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (max-width: 1200px) {
  .nav {
    flex-wrap: wrap;
  }

  .header .header-actions {
    order: 2 !important;
    margin-left: auto !important;
  }

  .navigation {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .header .header-actions {
    width: auto !important;
    margin-left: auto !important;
    justify-content: flex-end !important;
  }

  .header .palma-whatsapp-icon,
  .palma-whatsapp-icon {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;
  }

  .header .btn.small {
    display: inline-flex !important;
    padding: 10px 12px !important;
    font-size: 0.82rem !important;
  }
}


@media (max-width: 680px) {
  .language-switch select {
    min-width: 112px;
    padding: 8px 28px 8px 12px;
    font-size: 12px;
  }
}


/* Sprachmenü als Button mit Dropdown */
.language-switch {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 8px;
  overflow: visible;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  margin: 0;
  padding: 9px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--black);
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  line-height: 1.2;
}

.language-toggle:hover,
.language-toggle:focus {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.language-menu {
  display: none;
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  min-width: 155px;
  padding: 7px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 16px;
  background: #111111;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  z-index: 10000;
}

.language-switch.open .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu button {
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #ffffff;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus,
.language-menu button.active {
  background: var(--gold);
  color: var(--black);
}

@media (max-width: 680px) {
  .language-toggle {
    min-width: 92px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .language-menu {
    right: 0;
  }
}

/* === PALMA MOBILE RESPONSIVE FINAL === */
/* Sorgt dafür, dass Header, Sprachmenü und Navigation auf Handy sauber bedienbar bleiben. */
.header,
.nav {
  overflow: visible !important;
}

.nav {
  align-items: center !important;
}

.language-switch {
  position: relative !important;
  margin-left: auto !important;
  flex: 0 0 auto !important;
  z-index: 10050 !important;
}

.header .header-actions {
  margin-left: 0 !important;
  flex: 0 0 auto !important;
}

.language-toggle {
  min-height: 44px !important;
  min-width: 108px !important;
  padding: 10px 16px !important;
  white-space: nowrap !important;
  touch-action: manipulation !important;
}

.language-menu {
  right: 0 !important;
  left: auto !important;
  min-width: 175px !important;
  max-width: calc(100vw - 28px) !important;
  z-index: 100000 !important;
}

.language-menu button {
  min-height: 44px !important;
  padding: 11px 14px !important;
  touch-action: manipulation !important;
}

.header .palma-whatsapp-icon,
.palma-whatsapp-icon,
.header .btn.small {
  min-height: 44px !important;
  touch-action: manipulation !important;
}

html {
  scroll-padding-top: 120px;
}

@media (max-width: 1200px) {
  .nav {
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 12px 0 !important;
  }

  .brand {
    order: 0 !important;
  }

  .language-switch {
    order: 1 !important;
    margin-left: auto !important;
  }

  .header .header-actions {
    order: 2 !important;
    margin-left: 0 !important;
  }

  .navigation {
    order: 3 !important;
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 180px;
  }

  .container {
    width: min(100% - 28px, 1160px) !important;
  }

  .nav {
    min-height: auto !important;
    gap: 10px 8px !important;
    padding: 10px 0 12px !important;
  }

  .brand {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    gap: 9px !important;
  }

  .brand img {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
  }

  .brand-text strong {
    font-size: 0.98rem !important;
    letter-spacing: 0.12em !important;
  }

  .brand-text span {
    font-size: 0.58rem !important;
    letter-spacing: 0.10em !important;
  }

  .language-switch {
    order: 1 !important;
    margin-left: auto !important;
  }

  .language-toggle {
    min-width: 92px !important;
    min-height: 44px !important;
    padding: 9px 12px !important;
    font-size: 12px !important;
  }

  .language-menu {
    top: calc(100% + 8px) !important;
    right: 0 !important;
    min-width: 172px !important;
  }

  .header .header-actions {
    order: 2 !important;
    width: auto !important;
    margin-left: auto !important;
    justify-content: flex-end !important;
    gap: 8px !important;
  }

  .header .btn.small {
    display: inline-flex !important;
    min-height: 44px !important;
    padding: 10px 13px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
  }

  .header .palma-whatsapp-icon,
  .palma-whatsapp-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    flex: 0 0 44px !important;
  }

  .navigation {
    order: 3 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    gap: 8px !important;
    font-size: 0.86rem !important;
  }

  .navigation a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    padding: 8px 8px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.075) !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  .hero,
  .subpage-hero {
    min-height: auto !important;
  }

  .hero-content,
  .subpage-hero {
    padding-top: 72px !important;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    min-height: 48px !important;
  }

  .form,
  .contact-box,
  .card,
  .price-card,
  .step,
  .service-detail-card,
  .city-card,
  .faq-item,
  .planning-box,
  .cta-box {
    border-radius: 18px !important;
  }

  input,
  textarea,
  select,
  .form button {
    min-height: 48px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1160px) !important;
  }

  .nav {
    gap: 9px 6px !important;
  }

  .brand img {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }

  .brand-text strong {
    font-size: 0.9rem !important;
    letter-spacing: 0.10em !important;
  }

  .brand-text span {
    font-size: 0.52rem !important;
  }

  .language-toggle {
    min-width: 86px !important;
    padding: 8px 10px !important;
    font-size: 11.5px !important;
  }

  .header .header-actions {
    width: 100% !important;
  }

  .navigation {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 340px) {
  .brand-text span {
    display: none !important;
  }

  .language-toggle {
    min-width: 82px !important;
  }

  .header .btn.small {
    padding-inline: 10px !important;
  }
}

/* === Sprache fest links neben WhatsApp === */
.header .header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
}

.header .header-actions .language-switch {
  order: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  flex: 0 0 auto !important;
}

.header .header-actions .palma-whatsapp-icon {
  order: 1 !important;
}

.header .header-actions .btn.small {
  order: 2 !important;
}

@media (max-width: 1200px) {
  .brand {
    order: 0 !important;
  }

  .header .header-actions {
    order: 1 !important;
    margin-left: auto !important;
  }

  .navigation {
    order: 2 !important;
    width: 100% !important;
  }
}

@media (max-width: 680px) {
  .header .header-actions {
    order: 1 !important;
    width: auto !important;
    margin-left: auto !important;
    justify-content: flex-end !important;
    gap: 8px !important;
  }

  .header .header-actions .language-switch {
    margin-left: 0 !important;
  }

  .language-menu {
    right: 0 !important;
    left: auto !important;
  }
}

@media (max-width: 420px) {
  .header .header-actions {
    width: 100% !important;
    justify-content: flex-end !important;
  }
}


/* Google Bewertung im Footer */
.footer-review {
  text-align: center;
  flex: 0 0 auto;
}

.footer-review a {
  display: inline-block;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #333333;
}

.footer-stars {
  font-size: 22px;
  line-height: 1.1;
  color: #fbbc05;
}

.footer-review-title {
  font-size: 16px;
  font-weight: 800;
  color: #333333;
}

.footer-review-text {
  font-size: 13px;
  color: #666666;
}

@media (max-width: 680px) {
  .footer-review {
    align-self: center;
    width: 100%;
    text-align: center;
  }

  .footer-review a {
    width: min(100%, 280px);
  }
}


/* Instagram & Kleinanzeigen Buttons im Footer */
.footer-social-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(212, 175, 55, 0.50);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  overflow: hidden;
  flex-shrink: 0;
}

.footer-social-icon svg {
  display: block;
}

.instagram-icon svg {
  width: 22px;
  height: 22px;
  stroke: #111111;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ebay-icon {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.ebay-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-weight: 900;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-family: Arial, Helvetica, sans-serif;
}

.ebay-wordmark .e { color: #e53238; }
.ebay-wordmark .b { color: #0064d2; }
.ebay-wordmark .a { color: #f5af02; }
.ebay-wordmark .y { color: #86b817; }

.footer-social-btn strong,
.footer-social-btn small {
  display: block;
  line-height: 1.25;
}

.footer-social-btn strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.footer-social-btn small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

@media (max-width: 680px) {
  .footer-social-row {
    width: 100%;
    align-items: stretch;
  }

  .footer-social-btn {
    width: min(100%, 320px);
    min-width: 0;
    justify-content: flex-start;
  }
}


/* Kompakter Footer */
.footer.footer-compact {
  padding: 22px 0 18px;
  text-align: center;
}

.footer.footer-compact .footer-grid {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  margin-bottom: 14px;
}

.footer.footer-compact .footer-brand {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.35;
}

.footer.footer-compact .footer-brand strong {
  color: #ffffff;
}

.footer-action-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-mini-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(212, 175, 55, 0.48);
}

.footer-mini-btn strong,
.footer-mini-btn small {
  display: block;
  line-height: 1.18;
  text-align: left;
}

.footer-mini-btn strong {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-mini-btn small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.73rem;
}

.footer-mini-icon,
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 999px;
  flex-shrink: 0;
}

.google-icon {
  width: auto;
  min-width: 62px;
  padding: 0 7px;
  color: #fbbc05;
  background: #ffffff;
  font-size: 0.78rem;
  letter-spacing: -0.03em;
}

.footer-social-icon {
  overflow: hidden;
}

.instagram-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.instagram-icon svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ebay-icon {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.ebay-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-family: Arial, Helvetica, sans-serif;
}

.ebay-wordmark .e { color: #e53238; }
.ebay-wordmark .b { color: #0064d2; }
.ebay-wordmark .a { color: #f5af02; }
.ebay-wordmark .y { color: #86b817; }

.footer-legal-row {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 0.84rem;
}

.footer-legal-row a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal-row a:hover {
  color: var(--gold);
}

@media (max-width: 680px) {
  .footer.footer-compact {
    padding: 18px 0 16px;
  }

  .footer.footer-compact .footer-grid {
    margin-bottom: 12px;
  }

  .footer-action-row {
    gap: 8px;
  }

  .footer-mini-btn {
    min-height: 36px;
    padding: 7px 10px;
    gap: 7px;
  }

  .footer-mini-btn small {
    display: none;
  }

  .footer-mini-btn strong {
    font-size: 0.82rem;
  }

  .footer-mini-icon,
  .footer-social-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  .google-icon {
    min-width: 52px;
    font-size: 0.68rem;
    padding: 0 5px;
  }

  .footer-legal-row {
    margin-top: 10px;
    gap: 16px;
  }
}


/* Startseiten-Hinweis: Vorbereitung Umzugstag */
.prep-teaser-section {
  padding-top: 34px;
}

.prep-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #111111, #1c1c1c);
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}

.prep-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.24), transparent 34%);
  pointer-events: none;
}

.prep-teaser-content,
.prep-teaser .btn {
  position: relative;
  z-index: 1;
}

.prep-teaser h2 {
  color: #ffffff;
  margin: 6px 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.prep-teaser p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  max-width: 820px;
  line-height: 1.7;
}

.prep-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.prep-points span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

#umzug-vorbereiten {
  scroll-margin-top: 110px;
}

@media (max-width: 760px) {
  .prep-teaser {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .prep-teaser .btn {
    width: 100%;
    justify-content: center;
  }

  .prep-points {
    gap: 8px;
  }

  .prep-points span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* === PALMA: kompakter Header auf Handy === */
@media (max-width: 680px) {
  html {
    scroll-padding-top: 92px !important;
  }

  .header {
    position: sticky !important;
  }

  .nav {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 6px 8px !important;
    min-height: auto !important;
    padding: 6px 0 7px !important;
    flex-wrap: nowrap !important;
  }

  .brand {
    order: 0 !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    gap: 7px !important;
    overflow: hidden !important;
  }

  .brand img {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    flex: 0 0 36px !important;
  }

  .brand-text {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .brand-text strong {
    font-size: 0.92rem !important;
    letter-spacing: 0.10em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .brand-text span {
    font-size: 0.50rem !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
  }

  .header .header-actions {
    order: 1 !important;
    width: auto !important;
    margin-left: 0 !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    flex: 0 0 auto !important;
  }

  .language-toggle {
    min-width: 74px !important;
    min-height: 36px !important;
    height: 36px !important;
    padding: 7px 9px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  .language-menu {
    top: calc(100% + 6px) !important;
    min-width: 155px !important;
  }

  .language-menu button {
    min-height: 38px !important;
    padding: 9px 12px !important;
    font-size: 0.9rem !important;
  }

  .header .palma-whatsapp-icon,
  .palma-whatsapp-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    flex: 0 0 36px !important;
  }

  .header .palma-whatsapp-icon svg,
  .palma-whatsapp-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .header .btn.small {
    display: inline-flex !important;
    min-height: 36px !important;
    height: 36px !important;
    padding: 7px 10px !important;
    font-size: 0.74rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .navigation {
    order: 2 !important;
    grid-column: 1 / -1 !important;
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 2px 0 1px !important;
    font-size: 0.78rem !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .navigation::-webkit-scrollbar {
    display: none !important;
  }

  .navigation a {
    flex: 0 0 auto !important;
    min-height: 30px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    background: rgba(255, 255, 255, 0.075) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-content {
    padding-top: 54px !important;
  }

  .faq-hero,
  .subpage-hero {
    padding-top: 108px !important;
  }
}

@media (max-width: 420px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 5px 6px !important;
  }

  .brand img {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    flex-basis: 34px !important;
  }

  .brand-text strong {
    font-size: 0.86rem !important;
    letter-spacing: 0.08em !important;
  }

  .brand-text span {
    display: none !important;
  }

  .header .header-actions {
    width: auto !important;
    gap: 5px !important;
  }

  .language-toggle {
    min-width: 70px !important;
    padding-inline: 8px !important;
    font-size: 10.5px !important;
  }

  .header .btn.small {
    padding-inline: 9px !important;
    font-size: 0.72rem !important;
  }

  .navigation a {
    min-height: 29px !important;
    padding: 6px 9px !important;
    font-size: 0.76rem !important;
  }
}

@media (max-width: 360px) {
  .header .btn.small {
    display: none !important;
  }

  .language-toggle {
    min-width: 68px !important;
  }
}


/* Sichtbarer WhatsApp-Anfragebutton */
.btn.whatsapp-btn {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.btn.whatsapp-btn:hover,
.btn.whatsapp-btn:focus-visible {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}

.contact-box .whatsapp-btn {
  margin-top: 10px;
  width: fit-content;
}

/* PALMA Einwilligungsbanner */
[hidden] {
  display: none !important;
}

.palma-consent-banner,
.palma-consent-modal,
.palma-consent-reopen {
  font-family: inherit;
}

.palma-consent-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px;
  color: #ffffff;
  background: #111111;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.palma-consent-copy {
  max-width: 760px;
}

.palma-consent-kicker {
  margin: 0 0 5px;
  color: #d4af37;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.palma-consent-banner h2,
.palma-consent-modal h2,
.palma-consent-modal h3 {
  margin-top: 0;
  color: inherit;
}

.palma-consent-banner h2 {
  margin-bottom: 7px;
  font-size: clamp(22px, 3vw, 30px);
}

.palma-consent-banner p {
  margin: 0 0 9px;
  color: #ededed;
  line-height: 1.55;
}

.palma-consent-banner a {
  color: #d4af37;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.palma-consent-actions,
.palma-consent-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.palma-consent-actions {
  justify-content: flex-end;
  max-width: 430px;
}

.palma-consent-btn {
  min-height: 46px;
  padding: 11px 17px;
  border: 1px solid #d4af37;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.palma-consent-btn:hover,
.palma-consent-btn:focus-visible,
.palma-consent-close:hover,
.palma-consent-close:focus-visible,
.palma-consent-reopen:hover,
.palma-consent-reopen:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(212, 175, 55, 0.28);
  outline-offset: 2px;
}

.palma-consent-btn-primary {
  color: #111111;
  background: #d4af37;
}

.palma-consent-btn-secondary {
  color: #ffffff;
  background: transparent;
}

.palma-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.72);
}

.palma-consent-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  color: #1c1c1c;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.palma-consent-modal > p {
  color: #555555;
  line-height: 1.6;
}

.palma-consent-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  color: #111111;
  background: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.palma-consent-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 19px;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  background: #fafafa;
}

.palma-consent-category h3,
.palma-consent-category strong {
  display: block;
  margin: 0 0 6px;
  font-size: 18px;
}

.palma-consent-category p,
.palma-consent-category small {
  display: block;
  margin: 0;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.5;
}

.palma-consent-status {
  flex: 0 0 auto;
  color: #397a32;
  font-size: 13px;
  font-weight: 800;
}

.palma-consent-category-toggle {
  cursor: pointer;
}

.palma-consent-switch {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 30px;
}

.palma-consent-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.palma-consent-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #b9b9b9;
  transition: background 0.2s ease;
}

.palma-consent-switch span::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.palma-consent-switch input:checked + span {
  background: #d4af37;
}

.palma-consent-switch input:checked + span::after {
  transform: translateX(24px);
}

.palma-consent-switch input:focus-visible + span {
  outline: 3px solid rgba(212, 175, 55, 0.35);
  outline-offset: 3px;
}

.palma-consent-modal-actions {
  justify-content: flex-end;
  margin-top: 22px;
}

.palma-consent-modal .palma-consent-btn-secondary {
  color: #111111;
}

.palma-consent-reopen {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 9998;
  padding: 9px 13px;
  border: 1px solid #d4af37;
  border-radius: 999px;
  color: #d4af37;
  background: #111111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

body.palma-consent-modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .palma-consent-banner {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 20px;
  }

  .palma-consent-actions {
    justify-content: stretch;
    max-width: none;
  }

  .palma-consent-actions .palma-consent-btn {
    flex: 1 1 160px;
  }
}

@media (max-width: 520px) {
  .palma-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    border-radius: 16px;
  }

  .palma-consent-actions,
  .palma-consent-modal-actions {
    flex-direction: column;
  }

  .palma-consent-actions .palma-consent-btn,
  .palma-consent-modal-actions .palma-consent-btn {
    width: 100%;
  }

  .palma-consent-modal {
    padding: 26px 19px 20px;
  }

  .palma-consent-category {
    align-items: flex-start;
  }

  .palma-consent-reopen {
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
  }
}
