/* =========================================================================
   Wilhelmshöhe Lingen — Event-Location
   Design: Editorial Monochrom · Lato · #000000 / #FFFFFF / #E2E2E2
   ========================================================================= */

/* ---- Fonts (liegen im /fonts-Ordner auf dem Webspace) ------------------- */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/lato-light.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lato-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lato-bold.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/lato-black.woff2") format("woff2");
}

/* ---- Design-Tokens ------------------------------------------------------ */
:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #e2e2e2;

  /* aus Schwarz abgeleitete Transparenzen für Text-Hierarchie */
  --ink: #000000;
  --ink-70: rgba(0, 0, 0, 0.85);
  --ink-45: rgba(0, 0, 0, 0.65);
  --line: rgba(0, 0, 0, 0.12);

  --font: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

ul {
  list-style: none;
  padding: 0;
}

/* ---- Typografie --------------------------------------------------------- */
h1,
h2,
h3 {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2rem);
  margin-top: 0.9rem;
}

.section-head p {
  margin-top: 1.25rem;
  font-weight: 300;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.1rem);
  color: var(--ink-70);
  line-height: 1.6;
}

/* ---- Layout-Helfer ------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

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

.section--ink {
  background: var(--black);
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.section--ink :focus-visible,
.site-header--ink :focus-visible {
  outline-color: var(--white);
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --bg: var(--black);
  --fg: var(--white);
  --bd: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95rem 1.6rem;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bd);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

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

.type .btn--ghost {
  color: white;
  background-color: black;
  border: 1.5px solid white;
}

.btn--ghost {
  --bg: transparent;
  --fg: var(--black);
}

.btn--ghost:hover {
  background: var(--black);
  color: var(--white);
}

.btn--onink {
  --bd: var(--white);
}

.btn--onink:hover {
  background: var(--white);
  color: var(--black);
}

.btn .btn__arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ---- Header / Navigation ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  ;
  padding: 15px 0;
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
  padding: 5px 0;
}

.is-stuck .nav__logo svg,
.is-stuck .nav__logo img {
  height: 50px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo svg,
.nav__logo img {
  height: 60px;
  width: auto;
  transition: all .3s;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav__toggle span::before {
  transform: translateY(-7px);
}

.nav__toggle span::after {
  transform: translateY(5px);
}

.nav__toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav__toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg) translateY(-1px);
}

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero .btn {
  background-color: white;
  color: black;
}

.hero .btn:hover,
.hero .btn--ghost:hover {
  background-color: black;
  color: white;
}

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

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* gleichmäßige Grundabdunklung, damit auch helle Fotos tragen */
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    /* kräftiger Verlauf im unteren Textbereich */
    linear-gradient(0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.1) 100%);
}

.hero__inner {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero__est {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 1.4rem + 5.4vw, 2.5rem);
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero__sub {
  margin-top: 1.5rem;
  max-width: 52ch;
  font-weight: 300;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.45rem);
  line-height: 1.55;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


/* ---- USPs --------------------------------------------------------------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* vorher: repeat(auto-fit, minmax(240px, 1fr)) */
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.usp {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.usp__icon {
  width: 44px;
  height: 44px;
  color: var(--black);
}

.usp__icon svg {
  width: 100%;
  height: 100%;
}

.usp h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.usp p {
  color: var(--ink-70);
  font-size: 0.98rem;
  line-height: 1.6;
}

.usp strong {
  font-weight: 900;
}

/* ---- Räume -------------------------------------------------------------- */
.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.room {
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.room__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.room__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.room:hover .room__media img {
  transform: scale(1.05);
}

.room__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.room__cap {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.room h3 {
  font-size: 1.35rem;
}

.room p {
  color: var(--ink-70);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ---- Kulinarik (Split) -------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split__body h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
  margin-bottom: 1.5rem;
}

.split__body p {
  color: var(--ink-70);
  font-size: 1.05rem;
}

.split__body p+p {
  margin-top: 1rem;
}

/* ---- Arten der Feiern --------------------------------------------------- */
.types {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.type {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.type__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-45);
  transition: color 0.3s var(--ease);
}

.type h3 {
  font-size: 1.3rem;
}

.type p {
  color: var(--ink-70);
  font-size: 0.96rem;
  line-height: 1.55;
  transition: color 0.3s var(--ease);
}

.type:hover {
  background: var(--black);
  color: var(--white);
}

.type:hover .type__num,
.type:hover p {
  color: rgba(255, 255, 255, 0.72);
}

/* ---- Events (Poster + Popup) -------------------------------------------- */
.events {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.event {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.event__poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.event__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.event:hover .event__poster img {
  transform: scale(1.04);
}

.event__heading {
  margin: 0;
  font-weight: inherit;
}

.event__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: inherit;
  transition: background 0.25s var(--ease);
}

.event__head:hover {
  background: rgba(255, 255, 255, 0.06);
}

.event__head-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.event__date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.event__name {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.event__toggle {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.event__toggle::before,
.event__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.event__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Content bleibt im DOM (SEO), wird ins Popup gespiegelt */
.event__panel {
  display: none;
}

.event__panel-inner {
  padding: 0 1.5rem 1.5rem;
}

.event__panel-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.75;
}

.event__panel-inner p+p {
  margin-top: 0.9rem;
}

.event__list {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.event__list li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.event__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--white);
}

.event__panel-inner .btn {
  margin-top: 1.25rem;
  --bg: var(--white);
  --fg: var(--black);
  --bd: var(--white);
}

.event__panel-inner .btn:hover {
  --bg: transparent;
  --fg: var(--white);
}

.event--soon {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-style: dashed;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Event-Popup (Modal) ------------------------------------------------ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  animation: modal-fade 0.25s var(--ease);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: min(85vh, 900px);
  overflow-y: auto;
  background: var(--white);
  color: var(--ink);
  padding: clamp(1.75rem, 4vw, 3rem);
  animation: modal-rise 0.3s var(--ease);
  -webkit-overflow-scrolling: touch;
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .modal__backdrop,
  .modal__dialog {
    animation: none;
  }
}

.modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin: -0.5rem -0.5rem 0 1rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.modal__close:hover {
  background: var(--black);
  color: var(--white);
}

.modal__date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: 0.6rem;
}

.modal__title {
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.1rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* geklonter Content im Popup: dunkel auf weiß */
.modal__body .event__panel-inner {
  padding: 0;
}

.modal__body .event__panel-inner p {
  color: var(--ink-70);
}

.modal__body .event__list li {
  color: var(--ink-70);
}

.modal__body .event__list li::before {
  background: var(--black);
}

.modal__body .event__panel-inner .btn {
  --bg: var(--black);
  --fg: var(--white);
  --bd: var(--black);
}

.modal__body .event__panel-inner .btn:hover {
  --bg: transparent;
  --fg: var(--black);
}

body.modal-open {
  overflow: hidden;
}

/* ---- Kontakt ------------------------------------------------------------ */
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* Marken-Panel: Location-Foto im Hintergrund, Logo davor */
.contact__brand {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--black);
  /* Fallback, falls das Foto fehlt/lädt */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem;
}

.contact__brand-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.contact__brand-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.55);
  /* Overlay für Kontrast – Wert nach Foto anpassbar */
}

.contact__brand-logo {
  width: min(60%, 320px);
  height: auto;
  filter: invert(1) drop-shadow(0 2px 16px rgba(0, 0, 0, 0.45));
  /* schwarzes Logo → weiß */
}

.contact__brand-claim {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.contact__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.contact__body h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
  margin-bottom: 1.25rem;
}

.contact__body p {
  color: var(--ink-70);
  font-size: 1.08rem;
  max-width: 48ch;
}

.contact__people {
  margin: 1.75rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact__person strong {
  display: block;
  font-weight: 900;
}

.contact__person span {
  color: var(--ink-45);
  font-size: 0.9rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- FAQ ---------------------------------------------------------------- */
.faq {
  max-width: 60rem;
  margin-inline: auto;
}

.faq__item {
  border-top: 1px solid var(--line);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: inherit;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
  font-weight: 700;
  color: var(--ink);
}

.faq__icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__q[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__a {
  overflow: hidden;
  height: 0;
  transition: height 0.4s var(--ease);
}

.faq__a-inner {
  padding-bottom: 1.5rem;
  color: var(--ink-70);
  max-width: 62ch;
}

@media (prefers-reduced-motion: reduce) {
  .faq__a {
    transition: none;
  }
}

/* ---- Footer ------------------------------------------------------------- */
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none
}

.footer__social svg {
  flex: 0 0 auto
}

.footer__social:hover {
  opacity: .8
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer__logo svg,
.footer__logo img {
  height: 40px;
  width: auto;
  filter: invert(1);
}

.footer__brand p {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.1rem;
}

.footer__col li {
  margin-bottom: 0.6rem;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.82);
}

.footer__col a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom a:hover {
  color: var(--white);
}

/* ---- Scroll-Reveal ------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Mobile-Navigation Overlay ----------------------------------------- */
@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.75rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .nav__menu.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav__link {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.05rem;
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin: 1.25rem 0 0;
    width: 100%;
    justify-content: center;
  }
}

/* ---- Responsive Layout-Anpassungen ------------------------------------- */
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }

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

  .split__media {
    order: -1;
  }

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

  .contact__media {
    max-width: 420px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }

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

  .hero__actions .btn,
  .contact__actions .btn {
    width: auto;
  }

  .hero__sub {
    margin-top: 0.5rem;
  }

  .hero h1 {
    font-size: 20px;
    line-height: 1.25;
  }

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

  .hero__est {
    margin-bottom: .5rem;
  }

  .hero__sub {
    font-size: 16px;
  }
}

/* ---- Cookie-Consent-Banner --------------------------------------------- */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: var(--white);
  border-top: 2px solid var(--black);
  box-shadow: 0 -12px 44px rgba(0, 0, 0, 0.14);
}

.cookie[hidden] {
  display: none;
}

.cookie__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2rem) var(--gutter);
}

.cookie__title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.cookie__text {
  color: var(--ink-70);
  font-size: 0.95rem;
  max-width: 74ch;
  line-height: 1.65;
}

.cookie__text a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie__options {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cookie__options[hidden] {
  display: none;
}

.cookie__opt {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-70);
}

.cookie__opt input {
  margin-top: 0.25rem;
  flex: 0 0 auto;
  accent-color: #000;
}

.cookie__opt strong {
  color: var(--ink);
}

.cookie__actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie__actions .btn {
  font-size: 0.72rem;
  padding: 0.85rem 1.4rem;
}

.cookie__actions .btn[hidden] {
  display: none;
}

/* Footer-Link "Cookie-Einstellungen" (Button ohne Kasten) */
.footer__linkbtn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer__linkbtn:hover {
  color: var(--white);
}

@media (max-width: 560px) {
  .cookie__actions .btn {
    width: 100%;
    justify-content: center;
  }
}