/* ── Header: taller nav so the bigger logo sits comfortably ── */
.site-header {
  box-shadow: 0 2px 24px rgba(3,27,57,.07) !important;
}

.nav-wrap {
  height: 150px !important;
}

.brand {
  width: 260px !important;
  height: 140px !important;
}

/* Logo: scale to fill container, no clipping */
.brand img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Scroll offset to match new header height */
html {
  scroll-padding-top: 150px !important;
}

/* Mobile dropdown must open below the new taller header */
.nav-links {
  top: 150px !important;
}

/* Underline hover offset for taller nav */
.nav-links > a:not(.button) {
  padding: 56px 0 !important;
}
.nav-links > a:not(.button)::after {
  bottom: 46px !important;
}

/* ── 860px breakpoint: keep mobile menu aligned ── */
@media (max-width: 860px) {
  .nav-wrap {
    height: 120px !important;
  }
  .nav-links {
    top: 120px !important;
  }
  .brand {
    width: 220px !important;
    height: 112px !important;
  }
  html {
    scroll-padding-top: 120px !important;
  }
  /* restore stacked link padding inside open mobile menu */
  .nav-links > a:not(.button) {
    padding: 10px 0 !important;
  }
}

/* ── 570px breakpoint: small phones ── */
@media (max-width: 570px) {
  .nav-wrap {
    height: 110px !important;
  }
  .nav-links {
    top: 110px !important;
  }
  .brand {
    width: 200px !important;
    height: 100px !important;
  }
  html {
    scroll-padding-top: 110px !important;
  }
}

/* ── Musterinserate ── */
.musterinserate-section {
  background: #f4f6f8;
  padding-top: 0;
}

.musterinserate-img {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(3,27,57,.12);
}

/* ── Social Media Profile Section ── */
.profiles-section {
  background: #f4f6f8;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.profile-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(3,27,57,.10);
  transition: transform .2s, box-shadow .2s;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(3,27,57,.16);
}

.profile-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.profile-card img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-label {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-label b {
  font-size: 15px;
  color: #062a56;
  font-weight: 700;
}

.profile-link {
  font-size: 12px;
  color: #e30613;
  font-weight: 700;
  letter-spacing: .02em;
}

.plabel-tt { background: #010101; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 20px; letter-spacing: .06em; width: fit-content; }
.plabel-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 20px; letter-spacing: .06em; width: fit-content; }
.plabel-fb { background: #1877f2; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 20px; letter-spacing: .06em; width: fit-content; }

@media (max-width: 860px) {
  .profiles-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Pricing panel footnote */
.price-footnote {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  font-style: italic;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  display: none;
  border-radius: 5px;
  margin-top: 13px;
  padding: 11px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.success {
  display: block;
  color: #0e6539;
  background: #eaf8f0;
}

.form-status.error {
  display: block;
  color: #981b25;
  background: #fff0f1;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.request-form input[type="file"]::file-selector-button {
  border: 0;
  border-radius: 4px;
  background: #062a56;
  color: #fff;
  margin-right: 10px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.price-panel[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.45);
  outline-offset: 3px;
}

@media (max-width: 570px) {
  .form-status {
    font-size: 10px;
  }
}
