/* ==========================================================================
   HörStudio Tiesing x hoershop.com - Recruiting-Landingpage
   Design-Tokens abgeleitet von hoerstudio.com (Avada-Palette) und dem Logo:
   tiefes Tannengrün, Olivgrün als Akzent, warme Off-Whites.
   Fonts: Montserrat (self-hosted, DSGVO-konform), als freie Näherung an
   Proxima Nova Light/Bold, die auf hoerstudio.com läuft.
   ========================================================================== */

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-900: #002923;
  --green-800: #00473a;
  --olive: #8aa22c;
  --olive-hover: #7a9127;
  --olive-text: #61751f;
  --bg: #f9f9fb;
  --band: #eef2ea;
  --white: #ffffff;
  --text: #32373c;
  --muted: #646464;
  --error: #8c0a14;
  --line: #dde4dd;
  --radius-card: 18px;
  --radius-input: 10px;
  --shadow: 0 10px 30px rgba(0, 41, 35, 0.08);
  --shadow-hover: 0 16px 42px rgba(0, 41, 35, 0.13);
  --nav-h: 68px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Basis ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  position: relative;
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  color: var(--green-900);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--green-800);
}

::selection {
  background: var(--olive);
  color: var(--green-900);
}

:focus-visible {
  outline: 3px solid rgba(138, 162, 44, 0.65);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--green-900);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus {
  top: 0.75rem;
}

.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(3.6rem, 7.2vw, 3rem);
}

.section-band {
  background: var(--band);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-bottom: 1.5rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: var(--olive);
  color: var(--green-900);
}

.btn-primary:hover {
  background: var(--olive-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(97, 117, 31, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--green-800);
  color: var(--green-800);
}

.btn-ghost:hover {
  background: rgba(0, 71, 58, 0.06);
  transform: translateY(-1px);
}

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 249, 251, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(0, 41, 35, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: var(--nav-h);
}

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

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s var(--ease-out);
}

.nav-links a:hover {
  color: var(--green-800);
}

.btn-nav {
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
}

/* ---------- Hero ---------- */

.hero {
  padding-top: clamp(1.8rem, 4vw, 3.15rem);
  padding-bottom: clamp(2.7rem, 5.4vw, 2.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  color: var(--text);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-sub strong {
  font-weight: 600;
  color: var(--green-900);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-media img {
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ---------- Kombination (Duo-Karten) ---------- */

.lead {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--green-900);
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.duo-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.duo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.duo-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.duo-body {
  padding: 1.75rem 1.75rem 2rem;
}

.duo-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.section-cta {
  margin-top: 2.75rem;
}

/* ---------- Fakten ---------- */

.facts-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
}

.facts-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}

.facts-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--olive);
  display: inline-block;
}

.facts-list {
  margin: 0;
}

.facts-list > div {
  margin-bottom: 1.15rem;
}

.facts-list > div:last-child {
  margin-bottom: 0;
}

.facts-list dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.facts-list dd {
  margin: 0;
  font-weight: 500;
  color: var(--green-900);
}

/* ---------- Prosa-Sektionen ---------- */

.prose {
  max-width: 42rem;
}

.pull {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--green-800);
  border-left: 3px solid var(--olive);
  padding-left: 1.1rem;
  margin-block: 1.75rem;
}

/* ---------- Split-Layout ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-media img {
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ---------- Dunkle Sektion ---------- */

.section-dark {
  background: var(--green-900);
  color: #cfdad3;
}

.section-dark h2 {
  color: #f7faf8;
}

.dark-lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  max-width: 40rem;
}

.big-question {
  margin: 2.5rem 0 3rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--olive);
}

.big-question p {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
  max-width: 22em;
  margin: 0;
}

.dark-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.dark-cols strong {
  color: #ffffff;
  font-weight: 600;
}

/* ---------- Arbeitstag-Story ---------- */

.story-beat {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.story-beat h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-bottom: 1.25rem;
}

.wide-media img {
  width: 100%;
  border-radius: var(--radius-card);
  aspect-ratio: 21 / 9;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-wide {
  max-width: none;
  margin-top: 2.5rem;
}

.story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

/* ---------- Bento: Bedingungen ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(170px, auto);
  grid-auto-flow: dense;
  gap: 1.25rem;
}

.bento-cell {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.bento-cell h3 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-bottom: 0.75rem;
}

.bento-cell p {
  margin: 0;
}

.bento-photo {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-olive {
  background: var(--olive);
}

.bento-olive h3 {
  color: var(--green-900);
}

.bento-olive .bento-big {
  color: var(--green-900);
}

.bento-dark {
  background: var(--green-800);
  color: #dce7e1;
}

.bento-dark h3 {
  color: #b7c94e;
}

.bento-big {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--green-900);
  margin-bottom: 0.75rem;
}

.bento-dark .bento-big {
  color: #ffffff;
}

.bento-big:last-child {
  margin-bottom: 0;
}

.bento-small {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 0.15rem;
}

.bento-dark .bento-small {
  color: #bccfc6;
}

.bento-wide {
  grid-column: span 2;
}

/* ---------- Könnte passen ---------- */

.section-passen {
  background: var(--bg);
}

.passen-intro {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.passen-line {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.18;
  max-width: 22em;
  margin-bottom: 2.5rem;
}

.passen-line span {
  color: var(--green-800);
}

.passen-body {
  margin-bottom: 2.5rem;
}

.passen-media {
  margin-top: 3.5rem;
}

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-person {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  margin-block: 2rem;
}

.contact-person img {
  width: 132px;
  height: 132px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
}

.contact-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.25rem;
}

.contact-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.1rem;
}

.contact-title {
  font-size: 0.95rem;
  color: #aebfb6;
  margin-bottom: 0.5rem;
}

.contact-mail {
  color: var(--olive);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 162, 44, 0.5);
  transition: color 0.2s var(--ease-out);
  overflow-wrap: anywhere;
}

.contact-grid > * {
  min-width: 0;
}

.contact-person > div {
  min-width: 0;
}

.contact-mail:hover {
  color: #b7c94e;
}

.contact-note {
  font-size: 0.95rem;
  color: #aebfb6;
}

/* ---------- Formular ---------- */

.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: 20px;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.field {
  margin-bottom: 1.4rem;
}

.field label,
.field legend {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.45rem;
  padding: 0;
}

.label-optional {
  font-weight: 400;
  color: var(--muted);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--green-900);
  background: #fbfdfc;
  border: 1.5px solid #ccd5cf;
  border-radius: var(--radius-input);
  padding: 0.8rem 1rem;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a948e;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(138, 162, 44, 0.28);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field.has-error input {
  border-color: var(--error);
}

.field-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
}

.field-error {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--error);
  margin: 0.35rem 0 0;
}

.field-radios {
  border: 0;
  margin: 0 0 1.4rem;
  padding: 0;
}

.field-radios .radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0.75rem 0.5rem 0;
  padding: 0.6rem 1.15rem;
  border: 1.5px solid #ccd5cf;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.field-radios .radio:has(input:checked) {
  border-color: var(--olive);
  background: rgba(138, 162, 44, 0.13);
  color: var(--green-900);
}

.field-radios .radio input {
  accent-color: var(--green-800);
  margin: 0;
}

.form-privacy {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-privacy a {
  color: var(--green-800);
}

.btn-submit {
  border: 0;
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.is-error {
  color: var(--error);
}

.form-success {
  border: 1.5px solid var(--olive);
  background: rgba(138, 162, 44, 0.1);
  border-radius: 14px;
  padding: 1.75rem;
}

.form-success-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 0.5rem;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--band);
  padding-block: 3.5rem 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--green-800);
  text-decoration: underline;
}

.footer-copy {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 1rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* ---------- Sticky Mobile-CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: none;
}

.sticky-cta .btn {
  width: 100%;
  box-shadow: 0 12px 32px rgba(0, 41, 35, 0.35);
}

@media (max-width: 768px) {
  .sticky-cta.is-visible {
    display: block;
  }
}

/* ---------- Scroll-Marken (Matomo) ---------- */

.scroll-marks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scroll-marks span {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
}

/* ---------- Reveal-Animationen ---------- */

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: calc(var(--d, 0) * 90ms);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-media {
    max-width: 640px;
  }

  .split,
  .split-flip {
    grid-template-columns: 1fr;
  }

  .split-media {
    order: 2;
  }

  .split-copy {
    order: 1;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-photo {
    grid-column: span 2;
    grid-row: auto;
  }

  .bento-photo img {
    aspect-ratio: 16 / 9;
  }
}

/* ---------- Burger-Menue ---------- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-inner {
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .btn-nav {
    margin-left: auto;
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1.25rem;
    background: rgba(249, 249, 251, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 41, 35, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out),
      visibility 0s 0.25s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  }

  .nav-links a {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 380px) {
  .btn-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .duo {
    grid-template-columns: 1fr;
  }

  .dark-cols,
  .story-cols {
    grid-template-columns: 1fr;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-photo,
  .bento-wide {
    grid-column: span 1;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .contact-person {
    align-items: flex-start;
  }

  .contact-person img {
    width: 96px;
    height: 96px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    text-align: left;
  }
}

/* ---------- Klaro Cookie-Consent (Markenfarben) ---------- */

.klaro {
  font-family: "Montserrat", -apple-system, "Segoe UI", sans-serif;
}

.klaro .cm-btn {
  border-radius: 999px;
  font-weight: 600;
}

.klaro .cm-btn-success {
  background: var(--olive);
  color: var(--green-900);
}

.klaro .cm-btn-success:hover,
.klaro .cm-btn-success:focus {
  background: var(--olive-hover);
}

.klaro .cookie-notice a,
.klaro .cookie-modal a {
  color: var(--olive-text);
}

/* ---------- Honeypot (Spamschutz): fuer Menschen unsichtbar ---------- */

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
