/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;700;800&display=swap');

/* ── VARIABLES ── */
:root {
  --navy: #1e3d59;
  --orange: #ff6e40;
  --gold: #ffc13b;
  --cream: #f5f0e1;
  --white: #ffffff;
  --off-white: #f8f7f5;
  --light-gray: #efefed;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #888;
  --border: #e0dfdc;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'League Spartan', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.1rem; letter-spacing: -0.01em; margin-bottom: 0.8rem; }
h4 { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }

p { font-weight: 300; line-height: 1.8; color: var(--text-mid); }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 6vw; }
.section { padding: 6rem 6vw; }
.section-white { background: var(--white); }
.section-off { background: var(--off-white); }

/* ── LABEL ── */
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--text-light);
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.7rem;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--text); color: var(--white); }
.btn-dark:hover { background: var(--navy); color: var(--white); }
.btn-line { color: var(--text); border: 1.5px solid var(--border); background: transparent; text-decoration: none; }
.btn-line:hover { border-color: var(--text); color: var(--text); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--text); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--orange); color: var(--white); }
.btn-small { font-size: 0.72rem; padding: 0.7rem 1.3rem; }

/* ── NAV ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img { height: 32px; width: auto; }

.nav-logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.18s;
}

.nav-menu li a:hover { color: var(--text); }

.nav-menu li.menu-cta a {
  background: var(--text);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  font-weight: 700;
  transition: background 0.18s;
}

.nav-menu li.menu-cta a:hover { background: var(--navy); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 88vh;
  border-bottom: 1px solid var(--border);
}

.hero-left {
  padding: 6rem 5vw 6rem 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--text-light);
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 400px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-right {
  background: var(--off-white);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  overflow: hidden;
  min-height: 500px;
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-photo-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  z-index: 2;
}

.hero-badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

.hero-badge-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-top: 0.15rem;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 6vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-item {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
}

.trust-item strong { color: var(--text-mid); font-weight: 600; }

/* ── ÜBER MICH ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: stretch;
  gap: 0;
}

.about-photo {
  background: var(--light-gray);
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-text {
  padding: 5rem 4vw 5rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text p { margin-bottom: 1.2rem; }
.about-text p.intro { font-size: 1.15rem; font-weight: 400; color: var(--text); }

/* ── ANGEBOTE ── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.offer-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.18s;
}

.offer-card:last-child { border-right: none; }
.offer-card:hover { background: var(--white); }

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--navy);
  transition: width 0.3s;
}

.offer-card:hover::before { width: 100%; }

.offer-number {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.offer-card h3 { color: var(--text); }

.offer-card p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.offer-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.18s;
}

.offer-link:hover { border-color: var(--text); }

/* ── BLOG ── */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border: 1px solid var(--border);
  border-top: none;
}

.blog-card {
  border-right: 1px solid var(--border);
  transition: background 0.18s;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:last-child { border-right: none; }
.blog-card:hover { background: var(--off-white); }

.blog-img {
  width: 100%;
  background: var(--light-gray);
  overflow: hidden;
}

.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-img img { transform: scale(1.02); }

.blog-card:first-child .blog-img { aspect-ratio: 16/9; }
.blog-card:not(:first-child) .blog-img { aspect-ratio: 4/3; }

.blog-body { padding: 1.5rem; }

.blog-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card h3 {
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  transition: color 0.18s;
}

.blog-card:first-child h3 { font-size: 1.05rem; }
.blog-card:not(:first-child) h3 { font-size: 0.92rem; }
.blog-card:hover h3 { color: var(--navy); }

.blog-meta { font-size: 0.7rem; font-weight: 400; color: var(--text-light); }

/* ── SLOW BUT SURE ── */
.sbs-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.sbs-content {
  background: var(--navy);
  padding: 6rem 5vw 6rem 6vw;
}

.sbs-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sbs-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.sbs-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.sbs-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.sbs-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2.5rem;
}

.sbs-detail {
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sbs-detail:nth-child(2n) { border-right: none; }
.sbs-detail:nth-last-child(-n+2) { border-bottom: none; }

.sbs-detail-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.3rem;
}

.sbs-detail-value {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--white);
}

.sbs-visual {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.sbs-visual img { max-width: 240px; width: 100%; height: auto; }

/* ── NEWSLETTER ── */
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.newsletter-form { display: flex; flex-direction: column; gap: 0.8rem; }

.form-row {
  display: flex;
  border: 1.5px solid var(--text);
  background: var(--white);
}

.form-row input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: none;
  outline: none;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  background: transparent;
  color: var(--text);
}

.form-row input::placeholder { color: var(--text-light); }

.form-row button {
  background: var(--text);
  color: white;
  border: none;
  padding: 0 1.4rem;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}

.form-row button:hover { background: var(--navy); }

.newsletter-note {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-light);
}

.newsletter-gift {
  margin-top: 1.5rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gift-bar { width: 2px; align-self: stretch; background: var(--text-light); flex-shrink: 0; }

.gift-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.gift-text span { font-size: 0.78rem; font-weight: 300; color: var(--text-light); }

/* ── FOOTER ── */
#site-footer { background: var(--text); padding: 4rem 6vw 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-name {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
}

#site-footer h4 {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.2rem;
}

#site-footer ul { list-style: none; margin: 0; padding: 0; }
#site-footer ul li { margin-bottom: 0.6rem; }
#site-footer ul a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.18s;
}
#site-footer ul a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
}

/* ── PAGES (volle Breite) ── */
.page-wrap {
  width: 100%;
}

.page-header {
  padding: 4rem 6vw 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 0;
}

.page-header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.page-thumbnail {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.page-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-content {
  padding: 4rem 6vw 6rem !important;
  box-sizing: border-box;
}

.page-content h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-top: 2.5rem; margin-bottom: 1rem; }
.page-content h3 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: 0.8rem; }
.page-content p { margin-bottom: 1.3rem; font-size: 1rem; line-height: 1.85; }
.page-content ul, .page-content ol { margin: 1rem 0 1.3rem 1.5rem; }
.page-content li { margin-bottom: 0.4rem; font-weight: 300; color: var(--text-mid); line-height: 1.7; }
.page-content > img, .page-content > figure img, .page-content > .wp-block-image img { margin: 2rem 0; width: 100%; }
.page-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* ── SINGLE POST (schmaler Lesebereich) ── */
.content-wrap {
  max-width: 1100px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 5rem 6vw !important;
  box-sizing: border-box;
}

.content-wrap h1 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.5rem; }
.content-wrap h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-top: 2.5rem; margin-bottom: 1rem; }
.content-wrap h3 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: 0.8rem; }
.content-wrap p { margin-bottom: 1.3rem; font-size: 1.15rem !important; line-height: 1.85; color: #1a1a1a; }
.content-wrap ul, .content-wrap ol { margin: 1rem 0 1.3rem 1.5rem; }
.content-wrap li { margin-bottom: 0.4rem; font-weight: 300; color: var(--text-mid); line-height: 1.7; }
.content-wrap img { margin: 2rem 0; width: 100%; }
.content-wrap a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

.post-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-thumbnail {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  margin-bottom: 3rem;
}

.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

/* ── ARCHIVE / BLOG PAGE ── */
.archive-header {
  padding: 4rem 6vw 3rem;
  border-bottom: 1px solid var(--border);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-top: none;
}

.posts-grid .blog-card { border-bottom: 1px solid var(--border); }

/* ── GUTENBERG EDITOR TWEAKS ── */
.wp-block-image img { border-radius: 0; }
.wp-block-separator { border-color: var(--border); }
.wp-block-quote { border-left: 3px solid var(--text); padding-left: 1.5rem; }
.wp-block-quote p { font-size: 1.1rem; font-style: italic; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border); padding: 4rem 6vw; }
  .hero-right { min-height: 380px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { min-height: 320px; }
  .about-text { padding: 3rem 6vw; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card { border-right: none; border-bottom: 1px solid var(--border); }
  .offer-card:last-child { border-bottom: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { border-right: none; border-bottom: 1px solid var(--border); }
  .blog-card:last-child { border-bottom: none; }
  .sbs-section { grid-template-columns: 1fr; }
  .sbs-visual { padding: 3rem; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1.5rem 6vw; gap: 1rem; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 4rem 6vw; }
  .sbs-details { grid-template-columns: 1fr; }
  .sbs-detail:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.1); }
  .sbs-detail:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .sbs-detail:last-child { border-bottom: none; }
}

/* ── BREVO FORMULAR ── */
.brevo-wrap { display: flex; flex-direction: column; justify-content: center; }

#sib-container { width: 100%; }

.brevo-field { margin-bottom: 0.75rem; }

.brevo-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.brevo-input::placeholder { color: var(--text-light); }
.brevo-input:focus { border-color: var(--text); }

.brevo-btn {
  width: 100%;
  padding: 1rem 1.7rem;
  font-size: 0.82rem;
  cursor: pointer;
}

/* ── SBS NEWSLETTER HINWEIS ── */
.sbs-newsletter-hint {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin-top: 0.9rem;
  line-height: 1.6;
}

.sbs-sub--second {
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}

/* ── BLOG IMAGE PLACEHOLDER ── */
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-gray);
  min-height: 180px;
}

/* ── HERO FOTO: immer von oben schneiden ── */
.hero-right img {
  object-position: top center;
}

.about-photo img {
  object-position: top center;
}

/* ── TRUST BAR SCHRIFT GRÖẞER ── */
.trust-item {
  font-size: 0.88rem !important;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
}

/* ── ANGEBOTSBILDER ── */
.offer-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s;
}

.offer-card:hover .offer-img img { transform: scale(1.03); }

/* ── RECAPTCHA BADGE VERSTECKEN ── */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ── DATENSCHUTZ-HÄKCHEN ── */
.brevo-checkbox { margin-bottom: 1rem; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--text);
}

.checkbox-label span {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.checkbox-label span a {
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── NEWSLETTER PAGE ── */
.nl-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 6vw 7rem;
}

.nl-hero-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 3rem;
}

.nl-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nl-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.nl-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.nl-form-wrap {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

@media (max-width: 600px) {
  .nl-page { padding: 3rem 6vw 5rem; }
}

/* ── SEITENTITEL WORDPRESS BLOCK UNTERDRÜCKEN ── */
.page-template-default .wp-block-post-title,
.page .entry-title,
.page .page-title {
  display: none;
}

/* ── GRAUER STREIFEN UNTER HEADER ENTFERNEN ── */
.page-wrap > *:first-child {
  margin-top: 0;
}

/* ── MOBILE PADDING ── */
@media (max-width: 768px) {
  .section { padding: 4rem 6vw; }
  .hero { padding: 3rem 6vw; }
  .trust-bar { padding: 1.5rem 6vw; }
  .sbs-section { padding: 4rem 6vw; }
  .about-grid { padding: 0; }
  .blog-header { padding: 0; }
  .newsletter-grid { padding: 0; }
  .page-content { padding: 0 6vw; }
  .nl-left { padding: 3rem 6vw !important; }
}

/* ── WORDPRESS BLOCK BREITE BEGRENZEN ── */
.content-wrap .wp-block-group,
.content-wrap .wp-block-image,
.content-wrap .wp-block-paragraph,
.content-wrap .wp-block-heading,
.content-wrap .wp-block-list,
.content-wrap figure,
.entry-content > *,
.post-content > * {
  max-width: 100%;
}

.entry-content,
.post-content {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ── HTML BLÖCKE: SCHUTZ VOR PAGE-CONTENT OVERRIDES ── */
.nl-wrap img,
.um-wrap img,
.shop-card-img img,
.ws-item img {
  width: 100% !important;
  margin: 0 !important;
}


