:root {
  --color-black: #0a0a0a;
  --color-charcoal: #17171a;
  --color-graphite: #2a2a2e;
  --color-gold: #F4B400;
  --color-gold-dark: #d99c00;
  --color-white: #ffffff;
  --color-bg: #f5f4ef;
  --color-bg-alt: #ececd9e6;
  --color-surface: #ffffff;
  --color-border: #e4e2d8;
  --color-text: #17171a;
  --color-text-muted: #5c5c60;

  --font-display: "Barlow Semi Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 10, 10, 0.08);
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  color: var(--color-black);
}
h1 { font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem); text-transform: uppercase; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 2.2vw + 0.8rem, 2.4rem); text-transform: uppercase; }
h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.02em; }
p { margin: 0 0 1em; }
.lead { font-size: 1.1rem; color: var(--color-text-muted); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }


/* Focus */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-black);
  border-bottom: 3px solid var(--color-gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 20px;
}

.brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 70px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Normale Navigation */
.main-nav a:not(.nav-cta) {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.main-nav a:not(.nav-cta):hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* CTA Button */
.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-black);
  color: var(--color-gold) !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  border: 2px solid var(--color-gold);
  transition: background var(--transition),
              color var(--transition),
              border-color var(--transition);
}

.main-nav .nav-cta:hover {
  background: var(--color-gold);
  color: var(--color-black) !important;
  border-color: var(--color-gold);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;

  background: transparent;
  color: var(--color-gold);

  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:focus-visible,
.nav-toggle:active {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-black);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 0;
    border-bottom: 3px solid var(--color-gold);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a:not(.nav-cta) {
    padding: 14px 4px;
    border-bottom: 1px solid #222;
  }

  .main-nav .nav-cta {
    margin-top: 12px;
    width: 100%;
    border: 2px solid var(--color-gold);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--color-charcoal); color: var(--color-white);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-image: url("/images/zaytek-schluessel-hero.webp");
  background-size: cover; background-position: right center;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 45%, rgba(10,10,10,0.15) 100%);
}
@media (max-width: 720px) {
  .hero-media { background-position: 70% center; }
  .hero-media::after { background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.7) 60%); }
}
.hero-inner {
  position: relative; z-index: 2;
  padding: clamp(56px, 10vw, 120px) 20px;
  max-width: var(--container); margin: 0 auto;
}
.hero-content { max-width: 640px; }
.eyebrow {
  display: inline-block;
  color: var(--color-gold);
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.85rem;
  border-left: 3px solid var(--color-gold); padding-left: 12px; margin-bottom: 20px;
}
.keep-lowercase {
  text-transform: lowercase;
}
.hero h1 { color: var(--color-white); margin-bottom: 20px; }
.hero p { color: #dcdcdc; font-size: 1.1rem; max-width: 560px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer;
  min-height: 48px; transition: all var(--transition);
}
.btn-primary { background: var(--color-gold); color: var(--color-black); border-color: var(--color-gold); }
.btn-primary:hover { background: var(--color-gold-dark); border-color: var(--color-gold-dark); }
.btn-secondary { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-secondary:hover { background: var(--color-white); color: var(--color-black); }
.btn-dark { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }
.btn-dark:hover { background: var(--color-graphite); border-color: var(--color-graphite); }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 32px;
  list-style: none; padding: 0;
}
.trust-strip li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: #eaeaea;
}
.trust-strip li::before {
  content: ""; width: 8px; height: 8px; background: var(--color-gold); display: inline-block;
  transform: rotate(45deg);
}

/* ---------- Sections ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head .eyebrow { color: var(--color-gold-dark); border-color: var(--color-gold); margin-bottom: 14px; }
.section-head h2 { color: var(--color-black); }

.bg-light { background: var(--color-bg); }
.bg-white { background: var(--color-surface); }
.bg-dark { background: var(--color-black); color: var(--color-white); }
.bg-dark h2 { color: var(--color-white); }
.bg-dark .lead { color: #c9c9c9; }

/* ---------- Services grid ---------- */
/* =========================================================
   Premium Services Showcase
   ========================================================= */

.services-showcase {
  --services-black: #090909;
  --services-surface: #111111;
  --services-surface-light: #181818;
  --services-gold: #f5b400;
  --services-gold-hover: #ffc21a;
  --services-white: #ffffff;
  --services-muted: #b6b6b6;
  --services-border: rgba(255, 255, 255, 0.13);
  --services-radius-lg: 24px;
  --services-radius-md: 18px;
  --services-radius-sm: 12px;
  --services-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);

  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6vw, 92px) 0;
  color: var(--services-white);
  background: var(--services-black);
}

.services-showcase__container {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.services-showcase__header {
  display: grid;
  gap: 28px;
  margin-bottom: clamp(38px, 5vw, 60px);
}

.services-showcase__eyebrow,
.service-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--services-gold);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-showcase__eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--services-gold);
}

.services-showcase__heading h2 {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--services-white);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.services-showcase__heading h2 span {
  color: var(--services-gold);
}

.services-showcase__intro {
  max-width: 500px;
}

.services-showcase__intro p {
  margin: 0 0 24px;
  color: var(--services-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
}

.services-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--services-white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.services-text-link span {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--services-gold);
}

.services-text-link svg,
.service-button svg,
.service-notice svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
}

.services-text-link svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}



/* Cards */

.featured-service,
.editorial-service {
  min-width: 0;
  overflow: hidden;
  background: var(--services-surface);
  border: 1px solid var(--services-border);
}

.featured-service {
  display: grid;
  margin-bottom: 24px;
  border-radius: var(--services-radius-lg);
  box-shadow: var(--services-shadow);
}

.editorial-service {
  display: grid;
  grid-template-rows: 240px minmax(0, 1fr);
  border-radius: var(--services-radius-md);
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.editorial-service:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 180, 0, 0.58);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.featured-service__media,
.editorial-service__media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #1b1b1b;
}

.featured-service__media {
  min-height: 360px;
}

.featured-service__media picture,
.editorial-service__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-service__media::after,
.editorial-service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 58%,
    rgba(0, 0, 0, 0.48) 100%
  );
}

.featured-service__media img,
.editorial-service__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.06);
  transition:
    transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 300ms ease;
}



.featured-service__availability {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 40px);
  padding: 13px 16px;
  color: var(--services-white);
  background: rgba(7, 7, 7, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.featured-service__availability span:last-child {
  display: grid;
  gap: 2px;
  font-size: 0.72rem;
  line-height: 1.3;
}

.featured-service__availability strong {
  font-size: 0.82rem;
}

.availability-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: var(--services-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(245, 180, 0, 0.15);
}

.featured-service__content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  padding: clamp(30px, 5vw, 48px);
}

.editorial-service__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
}

.service-number {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.editorial-service__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.featured-service__content h3,
.editorial-service__content h3 {
  color: var(--services-white);
  text-wrap: balance;
}

.featured-service__content h3 {
  max-width: 560px;
  margin: 15px 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.editorial-service__content h3 {
  margin: 20px 0 15px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.featured-service__content p,
.editorial-service__content p {
  margin: 0;
  color: var(--services-muted);
  line-height: 1.7;
}

.featured-service__content p {
  max-width: 600px;
  font-size: 1rem;
}

.service-benefits,
.compact-benefits {
  display: grid;
  padding: 0;
  list-style: none;
}

.service-benefits {
  gap: 13px;
  margin: 28px 0 32px;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e7e7e7;
  font-size: 0.94rem;
}

.service-benefits svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  flex: 0 0 auto;
  color: var(--services-black);
  background: var(--services-gold);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.compact-benefits {
  gap: 10px;
  margin: 24px 0 30px;
}

.compact-benefits li {
  position: relative;
  padding-left: 18px;
  color: #dedede;
  font-size: 0.9rem;
}

.compact-benefits li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--services-gold);
  border-radius: 50%;
}

/* Buttons and labels */

.service-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.055em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.editorial-service__content .service-button {
  margin-top: auto;
  align-self: flex-start;
}

.service-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.9;
  transition: transform 180ms ease;
}

.service-button:hover {
  transform: translateY(-2px);
}

.service-button:hover svg {
  transform: translateX(3px);
}

.service-button:active {
  transform: translateY(0);
}

.service-button:focus-visible,
.services-text-link:focus-visible {
  outline: 3px solid var(--services-white);
  outline-offset: 4px;
}

.service-button--gold {
  color: var(--services-black);
  background: var(--services-gold);
}

.service-button--gold:hover {
  background: var(--services-gold-hover);
}

.service-button--outline {
  color: var(--services-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.service-button--outline:hover {
  color: var(--services-black);
  background: var(--services-white);
  border-color: var(--services-white);
}

.service-button--text {
  min-height: auto;
  justify-content: flex-start;
  padding: 4px 0;
  color: var(--services-white);
  border-radius: 0;
  border-bottom-color: var(--services-gold);
}

.service-button--text:hover {
  color: var(--services-gold);
  background: transparent;
}

.image-badge,
.editorial-service__floating-label {
  position: absolute;
  z-index: 2;
  color: var(--services-black);
  background: var(--services-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.image-badge {
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
}

.editorial-service__floating-label {
  right: 0;
  bottom: 0;
  padding: 12px 18px;
}

.editorial-service__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.editorial-service__benefits span {
  padding: 8px 11px;
  color: #e8e8e8;
  background: var(--services-surface-light);
  border: 1px solid var(--services-border);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 650;
}

.service-notice {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 15px;
  color: #d5d5d5;
  background: var(--services-surface-light);
  border-left: 3px solid var(--services-gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.service-notice svg {
  width: 19px;
  height: 19px;
  color: var(--services-gold);
  stroke-width: 1.8;
}

/* Editorial card grid */

.service-editorial {
  display: grid;
  gap: 24px;
}

/* Trust block */

.services-trust {
  display: grid;
  gap: 34px;
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(28px, 4vw, 44px);
  color: var(--services-black);
  background: var(--services-gold);
  border-radius: var(--services-radius-lg);
}

.services-trust__intro > span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-trust__intro h3 {
  max-width: 490px;
  margin: 0;
  color: var(--services-black);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.services-trust__items {
  display: grid;
  gap: 14px;
}

.trust-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: var(--services-radius-sm);
}

.trust-item__number {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.trust-item p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.83rem;
  line-height: 1.5;
}

.services-showcase__note {
  margin: 28px 0 0;
  color: #8f8f8f;
  font-size: 0.8rem;
  line-height: 1.6;
}

/* Tablet */

@media (min-width: 720px) {
  .services-showcase__container {
    width: min(1080px, calc(100% - 64px));
  }

  .services-showcase__header {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
  }

  .featured-service {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    min-height: 480px;
  }

  .featured-service__media {
    min-height: 480px;
  }

  .featured-service__content {
    align-content: center;
  }

  .service-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .editorial-service {
    height: 100%;
    min-height: 540px;
  }

  .services-trust__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Desktop: all three supporting cards have identical dimensions */

@media (min-width: 1050px) {
  .service-editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .editorial-service,
  .editorial-service--wide,
  .editorial-service--compact,
  .editorial-service--horizontal {
    display: grid;
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 245px minmax(0, 1fr);
    min-height: 570px;
  }

  .editorial-service__media,
  .editorial-service--wide .editorial-service__media,
  .editorial-service--compact .editorial-service__media,
  .editorial-service--horizontal .editorial-service__media {
    min-height: 0;
    height: 245px;
  }

  .services-trust {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.65fr);
    align-items: center;
  }
}

/* Phones */

@media (max-width: 719px) {
  .services-showcase {
    padding: 56px 0;
  }

  .services-showcase__container {
    width: calc(100% - 28px);
  }

  .services-showcase__heading h2 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .featured-service,
  .editorial-service,
  .editorial-service--wide,
  .editorial-service--compact,
  .editorial-service--horizontal {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 230px auto;
    min-height: 0;
    height: auto;
  }

  .featured-service__media,
  .editorial-service__media,
  .editorial-service--wide .editorial-service__media,
  .editorial-service--compact .editorial-service__media,
  .editorial-service--horizontal .editorial-service__media {
    width: 100%;
    height: 230px;
    min-height: 230px;
    max-height: 230px;
  }

  .featured-service__content,
  .editorial-service__content {
    min-height: 0;
    height: auto;
    padding: 26px 22px;
  }

  .featured-service__content {
    grid-template-columns: 1fr;
  }

  .featured-service__content > .service-number {
    display: none;
  }

  .editorial-service__content .service-button {
    margin-top: 26px;
  }
}

@media (max-width: 480px) {
  .featured-service__media,
  .editorial-service__media,
  .editorial-service--wide .editorial-service__media,
  .editorial-service--compact .editorial-service__media,
  .editorial-service--horizontal .editorial-service__media {
    height: 215px;
    min-height: 215px;
    max-height: 215px;
  }

  .featured-service,
  .editorial-service,
  .editorial-service--wide,
  .editorial-service--compact,
  .editorial-service--horizontal {
    grid-template-rows: 215px auto;
  }

  .featured-service__availability {
    align-items: flex-start;
    border-radius: 14px;
  }

  .featured-service__content,
  .editorial-service__content {
    padding: 24px 19px;
  }

  .service-button {
    width: 100%;
  }

  .editorial-service__benefits {
    display: grid;
  }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  .featured-service__media img,
  .editorial-service__media img,
  .editorial-service,
  .service-button,
  .service-button svg,
  .services-text-link svg {
    transition: none;
  }
}

/* ---------- Service area ---------- */
.locations-list {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  list-style: none; padding: 0; margin: 32px 0 0;
}
.locations-list a {
  display: flex; align-items: center; gap: 10px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  padding: 14px 16px; font-weight: 600; color: var(--color-black);
  transition: border-color var(--transition), background var(--transition);
}
.locations-list a::before {
  content: "›"; color: var(--color-gold); font-weight: 700; font-size: 1.2em;
}
.locations-list a:hover { border-color: var(--color-gold); background: #fffef4; }
.locations-list a[aria-current="page"] { border-color: var(--color-gold); background: #fff9e0; }

/* Hinweis unter Einsatzgebieten */
.service-areas-note {
  position: relative;

  max-width: 100%;
  margin: 28px 0 0;
  padding: 18px 20px 18px 24px;

  color: var(--color-text-muted);
  background: #faf9f5;

  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);

  font-size: 0.92rem;
  line-height: 1.65;
}

/* Überschrift innerhalb des Hinweises */
.service-areas-note strong {
  color: var(--color-black);
  font-weight: 700;
}

/* Telefonnummer / Call-to-Action */
.service-areas-note a {
  color: var(--color-black);
  font-weight: 700;

  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;

  transition: color var(--transition);
}




/* Mobile */
@media (max-width: 600px) {
  .service-areas-note {
    margin-top: 22px;
    padding: 16px 17px 16px 20px;

    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* =========================================================
   CONTACT
   ========================================================= */

#kontakt {
    background: #090909;
    color: #fff;
}

#kontakt .section-head h2 {
    color: #fff;
}

#kontakt .section-head .lead {
    color: #bdbdbd;
}

#kontakt .eyebrow {
    color: var(--color-gold);
    border-left-color: var(--color-gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Linke Infobox */

.contact-info {
  background: #111;
  color: #fff;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
}

.contact-info h3 {
  color: var(--color-gold);
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .97rem;
}

.contact-info li:last-child {
  border-bottom: none;
}

.contact-info li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-info a {
  color: #fff;
  transition: color .2s;
}

.contact-info a:hover {
  color: var(--color-gold);
}

/* Formular */

.contact-form {
  background: #111;
  color: #fff;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
}

.contact-form h2,
.contact-form h3,
.contact-form label {
  color: #fff;
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width:640px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.required {
  color: var(--color-gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;

  color: #fff;
  background: #1a1a1a;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;

  font: inherit;

  transition:
    border-color .2s,
    background .2s,
    box-shadow .2s;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8d8d8d;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #1f1f1f;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(244,180,0,.18);
}

.form-field .error-msg {
  display: none;
  color: #ff7070;
  margin-top: 6px;
  font-size: .85rem;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #ff5d5d;
}

.form-field.has-error .error-msg {
  display: block;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #bdbdbd;
  font-size: .9rem;
}

.checkbox-field input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

@media (max-width: 768px) {

    .checkbox-field {
        gap: 16px;
        font-size: 1rem;
    }

    .checkbox-field input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 3px;
    }

}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.contact-form .btn-dark {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    transition: .25s ease;
}

.contact-form .btn-dark:hover {
    background: #ffd04d;
    border-color: #ffd04d;
    color: var(--color-black);
}

@media (max-width: 768px) {

    .contact-form .btn-dark {
        display: flex;
        margin: 0 auto;
    }

    

}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
}

.form-status.success {
  display: block;
  color: #fff;
  background: #0d5c2c;
  border: 1px solid #2b8d4e;
}

.form-status.error {
  display: block;
  color: #fff;
  background: #7c1717;
  border: 1px solid #b53939;
}

/* =========================================================
   CONTACT FORM – SUBMIT STATE
   ========================================================= */

.contact-submit {
  position: relative;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.82;
}

.contact-submit__spinner {
  display: none;

  width: 17px;
  height: 17px;

  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: var(--color-black);
  border-radius: 50%;

  animation: contact-spinner 0.7s linear infinite;
}

.contact-submit.is-loading .contact-submit__spinner {
  display: inline-block;
}

@keyframes contact-spinner {
  to {
    transform: rotate(360deg);
  }
}


/* =========================================================
   CONTACT FORM – ERROR MESSAGE
   ========================================================= */

.form-status.error {
  display: block;

  margin-top: 18px;
  padding: 14px 16px;

  color: #fff;
  background: rgba(124, 23, 23, 0.5);

  border: 1px solid rgba(255, 112, 112, 0.45);
  border-left: 3px solid #ff7070;

  border-radius: 8px;

  font-size: 0.9rem;
  line-height: 1.55;
}

.form-status.error a {
  color: var(--color-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =========================================================
   SUCCESS MODAL
   ========================================================= */

.form-success-modal[hidden] {
  display: none;
}

.form-success-modal {
  position: fixed;
  inset: 0;

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}


/* Backdrop */

.form-success-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.78);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  animation: modal-backdrop-in 180ms ease forwards;
}


/* Dialog */

.form-success-modal__dialog {
  position: relative;
  z-index: 1;

  width: min(100%, 520px);

  padding: clamp(34px, 5vw, 50px);

  text-align: center;

  color: var(--color-white);
  background: #111;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid var(--color-gold);

  border-radius: 18px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5);

  animation: modal-dialog-in 220ms ease forwards;
}

.form-success-modal__dialog:focus {
  outline: none;
}


/* Close button */

.form-success-modal__close {
  position: absolute;

  top: 16px;
  right: 16px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: #aaa;
  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  cursor: pointer;

  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.form-success-modal__close:hover {
  color: var(--color-black);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.form-success-modal__close svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}


/* Success icon */

.form-success-modal__icon {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 24px;

  color: var(--color-black);
  background: var(--color-gold);

  border-radius: 50%;

  box-shadow:
    0 0 0 9px rgba(244, 180, 0, 0.10);
}

.form-success-modal__icon svg {
  width: 31px;
  height: 31px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Small heading */

.form-success-modal__eyebrow {
  display: block;

  margin-bottom: 12px;

  color: var(--color-gold);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  text-transform: uppercase;
}


/* Main heading */

.form-success-modal__dialog h3 {
  margin: 0 0 16px;

  color: var(--color-white);

  font-size: clamp(1.65rem, 4vw, 2.25rem);
  line-height: 1.1;
}


/* Text */

.form-success-modal__dialog p {
  max-width: 420px;

  margin: 0 auto 28px;

  color: #bdbdbd;

  font-size: 1rem;
  line-height: 1.7;
}


/* Button */

.form-success-modal__button {
  background: var(--color-gold);
  color: var(--color-black);

  border-color: var(--color-gold);
}

.form-success-modal__button:hover {
  background: #ffd04d;
  color: var(--color-black);

  border-color: #ffd04d;
}


/* Prevent page scrolling while modal is open */

body.modal-open {
  overflow: hidden;
}


/* Animations */

@keyframes modal-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal-dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* Mobile */

@media (max-width: 520px) {

  .form-success-modal {
    padding: 14px;
  }

  .form-success-modal__dialog {
    padding:
      38px
      24px
      28px;
  }

  .form-success-modal__icon {
    width: 60px;
    height: 60px;
  }

  .form-success-modal__button {
    width: 100%;
    justify-content: center;
  }

}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

  .contact-submit__spinner,
  .form-success-modal__backdrop,
  .form-success-modal__dialog {
    animation: none;
  }

}

/* =========================================================
   PREMIUM FAQ
   ========================================================= */

.premium-faq {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--color-black);
  color: var(--color-white);
}

.premium-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.09);
}

.premium-faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.35fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}


/* ---------- Left introduction ---------- */

.premium-faq__intro {
  position: sticky;
  top: 125px;
  max-width: 410px;
}

.premium-faq__intro .services-showcase__eyebrow {
  margin-bottom: 20px;

  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: var(--color-gold);
}

.premium-faq__intro h2 {
  margin: 0 0 24px;
  color: var(--color-white);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.premium-faq__intro h2 span {
  color: var(--color-gold);
}

.premium-faq__intro > p {
  max-width: 390px;
  margin: 0;
  color: #b6b6b6;
  font-size: 1rem;
  line-height: 1.75;
}


/* ---------- Small contact CTA ---------- */

.premium-faq__contact {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.premium-faq__contact > span {
  display: block;
  margin-bottom: 9px;
  color: #8d8d8d;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.premium-faq__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--color-white);

  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;

  transition: color var(--transition);
}

.premium-faq__contact a svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.8;

  transition: transform var(--transition);
}

.premium-faq__contact a:hover {
  color: var(--color-gold);
}

.premium-faq__contact a:hover svg {
  transform: translateX(4px);
}


/* ---------- FAQ list ---------- */

.premium-faq__list {
  border-top: 1px solid rgba(255,255,255,.14);
}


/* ---------- FAQ item ---------- */

.premium-faq__item {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.14);

  transition:
    background-color var(--transition),
    border-color var(--transition);
}

.premium-faq__item:hover {
  background: rgba(255,255,255,.025);
}

.premium-faq__item.is-open {
  border-bottom-color: rgba(244,180,0,.42);
}


/* Gold active indicator */

.premium-faq__item::before {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

  width: 2px;

  background: var(--color-gold);

  transform: scaleY(0);
  transform-origin: top;

  transition: transform 220ms ease;
}

.premium-faq__item.is-open::before {
  transform: scaleY(1);
}


/* ---------- Trigger ---------- */

.premium-faq__trigger {
  width: 100%;
  min-height: 86px;

  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 18px;

  padding: 24px 12px 24px 20px;

  appearance: none;
  background: transparent;
  color: inherit;

  border: 0;

  font: inherit;
  text-align: left;

  cursor: pointer;
}


/* numbering */

.premium-faq__number {
  color: #707070;

  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;

  transition: color var(--transition);
}

.premium-faq__item.is-open .premium-faq__number {
  color: var(--color-gold);
}


/* question */

.premium-faq__question {
  color: var(--color-white);

  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;

  transition: color var(--transition);
}

.premium-faq__trigger:hover .premium-faq__question,
.premium-faq__item.is-open .premium-faq__question {
  color: #fff;
}


/* ---------- Plus / minus icon ---------- */

.premium-faq__icon {
  position: relative;

  width: 22px;
  height: 22px;

  justify-self: end;
}

.premium-faq__icon::before,
.premium-faq__icon::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  background: var(--color-gold);

  transform: translate(-50%, -50%);

  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.premium-faq__icon::before {
  width: 16px;
  height: 2px;
}

.premium-faq__icon::after {
  width: 2px;
  height: 16px;
}

.premium-faq__item.is-open .premium-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}


/* ---------- Answer ---------- */

.premium-faq__answer {
  overflow: hidden;
}

.premium-faq__answer-inner {
  padding:
    0
    60px
    28px
    84px;
}

.premium-faq__answer p {
  max-width: 680px;

  margin: 0;

  color: #aaa;
  font-size: .98rem;
  line-height: 1.75;
}


/* ---------- Keyboard focus ---------- */

.premium-faq__trigger:focus-visible {
  position: relative;
  z-index: 2;

  outline: 2px solid var(--color-gold);
  outline-offset: -2px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

  .premium-faq__layout {
    grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr);
    gap: 45px;
  }

  .premium-faq__intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .premium-faq__trigger {
    grid-template-columns: 38px minmax(0, 1fr) 30px;
    gap: 14px;
  }

  .premium-faq__answer-inner {
    padding-left: 72px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .premium-faq {
    padding: 64px 0;
  }

  .premium-faq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .premium-faq__intro {
    position: static;
    max-width: 560px;
  }

  .premium-faq__intro h2 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .premium-faq__contact {
    margin-top: 28px;
  }

  .premium-faq__trigger {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 12px;

    min-height: 76px;

    padding: 21px 4px;
  }

  .premium-faq__number {
    align-self: start;
    padding-top: 5px;
  }

  .premium-faq__question {
    font-size: 1.08rem;
  }

  .premium-faq__icon {
    width: 20px;
    height: 20px;
  }

  .premium-faq__answer-inner {
    padding:
      0
      32px
      24px
      46px;
  }

  .premium-faq__answer p {
    font-size: .94rem;
    line-height: 1.7;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

  .premium-faq__trigger {
    grid-template-columns: 28px minmax(0, 1fr) 24px;
    gap: 9px;
  }

  .premium-faq__answer-inner {
    padding-left: 37px;
    padding-right: 12px;
  }

}


/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {

  .premium-faq__item,
  .premium-faq__item::before,
  .premium-faq__icon::before,
  .premium-faq__icon::after,
  .premium-faq__contact a,
  .premium-faq__contact a svg {
    transition: none;
  }

}


/* ---------- Map ---------- */
.map-wrap { border: 1px solid var(--color-border); background: #ddd; }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.map-actions { margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-black); color: #d0d0d0;
  padding: 56px 0 1rem; margin-top: 0;
}
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--color-gold); text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-grid a:hover { color: var(--color-gold); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }
.footer-bottom {
  border-top: 1px solid #222; margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.85rem; color: #888;
}

.footer-credit {
    font-size: 0.82rem;
    color: #666;
}

.footer-credit a {
    color: #888;
    transition: color .2s ease;
}

.footer-credit a:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .footer-credit {
        display: block;
        margin-top: 6px;
    }
}



/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: #0f0f10;
  padding: 11px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.breadcrumbs li + li::before {
  content: "›";
  margin-right: 7px;
  color: rgba(244, 180, 0, 0.65);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--color-gold);
}

/* ---------- Utility ---------- */
.legal-page { padding: 64px 0; max-width: 800px; }
.legal-page h2 { margin-top: 32px; }
.legal-page ul { padding-left: 20px; }

/* Icons */
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.15em; }


/* =========================================================
   CONSENT BANNER
   ========================================================= */

.consent-banner[hidden] {
  display: none;
}

.consent-banner {
  position: fixed;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 10000;

  padding: 18px;

  background: rgba(0, 0, 0, 0.72);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


.consent-banner__inner {
  width: min(100%, 1180px);

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;

  margin: 0 auto;
  padding: 26px 28px;

  color: #fff;
  background: #111;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid var(--color-gold);

  border-radius: 14px;

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45);
}


.consent-banner__content {
  max-width: 760px;
}


.consent-banner__eyebrow {
  display: block;

  margin-bottom: 7px;

  color: var(--color-gold);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;

  text-transform: uppercase;
}


.consent-banner h2 {
  margin: 0 0 10px;

  color: #fff;

  font-size: 1.3rem;
}


.consent-banner p {
  margin: 0 0 10px;

  color: #bdbdbd;

  font-size: 0.88rem;
  line-height: 1.65;
}


.consent-banner__privacy {
  color: #ddd;

  font-size: 0.82rem;
  font-weight: 600;

  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 3px;
}


.consent-banner__privacy:hover {
  color: var(--color-gold);
}


.consent-banner__actions {
  display: flex;
  gap: 10px;

  flex-wrap: wrap;
}


.consent-button {
  min-height: 46px;

  padding: 11px 18px;

  border-radius: 7px;

  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.04em;

  cursor: pointer;

  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}


.consent-button--necessary {
  color: #fff;
  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.35);
}


.consent-button--necessary:hover {
  color: var(--color-black);
  background: #fff;

  border-color: #fff;
}


.consent-button--all {
  color: var(--color-black);
  background: var(--color-gold);

  border: 1px solid var(--color-gold);
}


.consent-button--all:hover {
  background: #ffd04d;
  border-color: #ffd04d;
}


/* =========================================================
   GOOGLE MAPS – CONSENT OVERLAY
   ========================================================= */

.map-wrap {
  position: relative;
  min-height: 420px;
  overflow: hidden;

  border: 1px solid var(--color-border);
  background: #ddd;
}


/* Google Maps selbst */
.map-wrap iframe {
  display: block;

  width: 100%;
  height: 420px;

  border: 0;
}


/* Overlay direkt AUF der Kartenfläche */
.map-consent {
  position: absolute;
  inset: 0;

  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      rgba(20, 20, 20, 0.96),
      rgba(35, 35, 35, 0.96)
    );
}


/* Wenn hidden gesetzt wird */
.map-consent[hidden] {
  display: none;
}


.map-consent__content {
  max-width: 460px;
}


.map-consent__content strong {
  display: block;

  margin-bottom: 12px;

  color: var(--color-gold);

  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;

  text-transform: uppercase;
}


.map-consent__content p {
  margin: 0 auto 22px;

  color: #d0d0d0;

  font-size: 0.92rem;
  line-height: 1.65;
}


.map-consent__content .btn {
  margin: 0 auto;
}


/* Mobile */
@media (max-width: 600px) {

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
    height: 360px;
  }

  .map-consent {
    padding: 22px;
  }

  .map-consent__content strong {
    font-size: 1.25rem;
  }

  .map-consent__content p {
    font-size: 0.88rem;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .consent-banner {
    padding: 10px;
  }

  .consent-banner__inner {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 22px 20px;
  }

  .consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consent-button {
    width: 100%;
  }

}





.footer-consent-settings {
  padding: 0;

  color: inherit;
  background: transparent;

  border: 0;

  font: inherit;

  cursor: pointer;
}


.footer-consent-settings:hover {
  color: var(--color-gold);
}


/* =========================================================
   Kontakt-Auswahl: Telefon / WhatsApp
   ========================================================= */

.contact-choice-modal[hidden] {
  display: none;
}

.contact-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-choice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.contact-choice-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 32px 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.contact-choice-modal__dialog h3 {
  margin: 10px 0 12px;
  color: #111111;
  font-size: clamp(1.45rem, 4vw, 1.9rem);
}

.contact-choice-modal__dialog p {
  margin: 0 auto 26px;
  color: #666666;
  line-height: 1.6;
}

.contact-choice-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  color: #111111;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.contact-choice-modal__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.contact-choice-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-choice-modal__actions .btn {
  width: 100%;
  justify-content: center;
}

.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #071b0d;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
}

.contact-choice-trigger {
  cursor: pointer;
}

@media (max-width: 520px) {
  .contact-choice-modal {
    align-items: flex-end;
    padding: 14px;
  }

  .contact-choice-modal__dialog {
    width: 100%;
    padding: 34px 20px 22px;
    border-radius: 20px;
  }

  .contact-choice-modal__actions {
    grid-template-columns: 1fr;
  }
}