@charset "UTF-8";

/* ============================================================
   FONTS
   ============================================================ */
@font-face { font-family: lh_light;   src: url('../fonts/light.ttf');   font-weight: 300; font-display: swap; }
@font-face { font-family: lh_regular; src: url('../fonts/regular.ttf'); font-weight: 400; font-display: swap; }
@font-face { font-family: lh_medium;  src: url('../fonts/medium.ttf');  font-weight: 500; font-display: swap; }
@font-face { font-family: lh_bold;    src: url('../fonts/bold.ttf');    font-weight: 700; font-display: swap; }
@font-face { font-family: lh_italic;  src: url('../fonts/italic.ttf');  font-style: italic; font-display: swap; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --lh-gold:        #757146;
  --lh-gold-light:  #9a9660;
  --lh-gold-pale:   #f3f1e8;
  --lh-dark:        #2a2a2a;
  --lh-white:       #ffffff;
  --lh-grey:        #f7f7f5;
  --lh-text:        #3a3a3a;
  --lh-border:      #e0ddd0;

  --font-base:      lh_regular, sans-serif;
  --font-medium:    lh_medium, sans-serif;
  --font-bold:      lh_bold, sans-serif;
  --font-light:     lh_light, sans-serif;
  --font-italic:    lh_italic, sans-serif;

  --transition:     all .25s ease;
  --radius:         4px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.08);
  --shadow-md:      0 6px 24px rgba(0,0,0,.12);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--lh-text);
  background: var(--lh-white);
  margin: 0;
  padding: 0;
}

/* Verhindert horizontales Scrollen ohne sticky zu brechen */
.lh-page-wrapper {
  overflow-x: hidden;
}

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

a {
  color: var(--lh-gold);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--lh-gold-light); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-medium);
  color: var(--lh-dark);
  line-height: 1.25;
  margin-bottom: .75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

/* Rechtliche Seiten */
.lh-legal-content h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.5rem; }
.lh-legal-content h2 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: .5rem; color: var(--lh-gold); }
.lh-legal-content p, .lh-legal-content li { font-family: var(--font-light); line-height: 1.8; color: #555; }
.lh-legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.lh-legal-content a { color: var(--lh-gold); }

/* ── Animierte Unterstreichung ── */
u {
  text-decoration: none;
  position: relative;
  display: inline;
  padding: 0 2px 3px;
  font-style: inherit;
}
u::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 40%;
  background: var(--lh-gold);
  opacity: .35;
  z-index: -1;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
u.u-highlight-in::after {
  transform: scaleX(1);
}

p { margin-bottom: 1rem; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold   { color: var(--lh-gold) !important; }
.bg-gold     { background: var(--lh-gold) !important; }
.bg-pale     { background: var(--lh-gold-pale) !important; }
.bg-dark-lh  { background: var(--lh-dark) !important; }

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--lh-gold);
  margin: .75rem auto 0;
}
.section-lead {
  text-align: center;
  color: #666;
  font-family: var(--font-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.btn-lh-primary {
  background: var(--lh-gold);
  color: var(--lh-white);
  border: 2px solid var(--lh-gold);
  font-family: var(--font-medium);
  padding: .65rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
}
.btn-lh-primary:hover {
  background: var(--lh-gold-light);
  border-color: var(--lh-gold-light);
  color: var(--lh-white);
}

.btn-lh-outline {
  background: transparent;
  color: var(--lh-gold);
  border: 2px solid var(--lh-gold);
  font-family: var(--font-medium);
  padding: .65rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
}
.btn-lh-outline:hover {
  background: var(--lh-gold);
  color: var(--lh-white);
}

.btn-lh-white {
  background: var(--lh-white);
  color: var(--lh-gold);
  border: 2px solid var(--lh-white);
  font-family: var(--font-medium);
  padding: .65rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
}
.btn-lh-white:hover {
  background: transparent;
  color: var(--lh-white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.lh-navbar {
  background: var(--lh-white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Überlappung für das absolut positionierte Logo */
  overflow: visible;
}

/* Container braucht overflow: visible damit Logo raussteht */
.lh-navbar .container {
  position: relative;
  overflow: visible;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.lh-navbar .navbar-brand {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-20%); /* Logo steht nach unten raus */
  padding: 0;
  z-index: 10;
}
.lh-navbar .navbar-brand img {
  height: auto;
  width: auto;
  min-width: 250px;
  /* Schatten damit Logo über hellem Hintergrund sichtbar bleibt */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.08));
}

.lh-navbar .navbar-collapse {
  margin-left: 280px; /* Platz für das überstehende Logo */
}

.lh-navbar .navbar-toggler {
  border: none;
  padding: 8px;
  margin-left: auto;
}
.lh-navbar .navbar-toggler:focus { box-shadow: none; }
.lh-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23757146' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.lh-navbar .nav-link {
  font-family: var(--font-medium);
  font-size: .88rem;
  color: var(--lh-gold) !important;
  padding: .9rem .85rem !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}
.lh-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;     /* geringer Abstand zur Textunterkante */
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--lh-gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.lh-navbar .nav-link:hover,
.lh-navbar .nav-link.active {
  color: var(--lh-gold) !important;
}
.lh-navbar .nav-link:hover::after,
.lh-navbar .nav-link.active::after {
  transform: scaleX(1);
}

/* ============================================================
   ANIMATIONEN
   ============================================================ */

/* Hero Load-Animationen */
@keyframes lh-fade-left {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lh-fade-right {
  from { opacity: 0; transform: translateX(70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lh-fade-up {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lh-fade-down {
  from { opacity: 0; transform: translateY(-50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lh-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lh-hero__logo-top { animation: lh-fade-in    .9s ease both; animation-delay: .1s; }
.lh-hero__content  { animation: lh-fade-left  .9s ease both; animation-delay: .5s; }
.lh-hero__image    { animation: lh-fade-right .9s ease both; animation-delay: .9s; }

/* Scroll-Animationen (via JS gesteuert) */
[data-anim] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-anim="from-left"]   { transform: translateX(-60px); }
[data-anim="from-right"]  { transform: translateX(60px); }
[data-anim="from-top"]    { transform: translateY(-50px); }
[data-anim="from-bottom"] { transform: translateY(50px); }

[data-anim].lh-anim-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Verzögerungen für gestaffelte Elemente */
[data-anim-delay="1"] { transition-delay: .1s; }
[data-anim-delay="2"] { transition-delay: .25s; }
[data-anim-delay="3"] { transition-delay: .4s; }

/* ============================================================
   HERO
   ============================================================ */
.lh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--lh-gold);
}

.lh-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/BG_gruen_harmonika_pro_trailer_bespielt_9.webp') center center / cover no-repeat;
  z-index: 0;
}


/* Logo-Bereich füllt den Raum zwischen Fensterrand und Content */
.lh-hero__logo-top {
  position: relative;
  z-index: 1;
  flex: 1;                    /* nimmt allen verfügbaren Platz über dem Content */
  display: flex;
  align-items: center;        /* Logo vertikal mittig in diesem Bereich */
  justify-content: center;
}
.lh-hero__logo-top img {
  width: 70vw;
  height: auto;
  max-height: 600px;
}

.lh-hero__content {
  position: relative;
  z-index: 1;
  color: var(--lh-white);
  padding: 0 0 80px;
}

@media (max-width: 991px) {
  .lh-hero__content {
    padding: 0 1.25rem 60px !important;
  }
}

/* Mobile: Logo füllt die Breite gut aus */
@media (max-width: 991px) {
  .lh-hero__logo-top img {
    width: 85vw;
  }
}

.lh-hero__eyebrow {
  font-family: var(--font-italic);
  font-size: 1.1rem;
  letter-spacing: .08em;
  opacity: .85;
  margin-bottom: .5rem;
  display: block;
}

.lh-hero__title {
  color: var(--lh-white);
  font-family: var(--font-bold);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.lh-hero__subtitle {
  font-family: var(--font-light);
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: .9;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Hero Swiper */
.lh-hero__image {
  position: relative;
  z-index: 1;
}
.hero-swiper {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-left: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HIGHLIGHT BAND
   ============================================================ */
.lh-highlight {
  background: var(--lh-gold);
  padding: 36px 0;
}
.lh-highlight__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--lh-white);
}
.lh-highlight__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  opacity: .85;
}
.lh-highlight__icon-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.lh-highlight__text {
  font-family: var(--font-medium);
  font-size: .95rem;
  letter-spacing: .03em;
}
.lh-highlight__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.25);
}

/* ============================================================
   ABOUT / ÜBER MICH
   ============================================================ */
.lh-about__image-wrap {
  position: relative;
}
.lh-about__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--lh-gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lh-gold);
  font-family: var(--font-light);
  font-size: .9rem;
  letter-spacing: .06em;
  border: 2px dashed var(--lh-border);
}
.lh-about__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.lh-about__image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: var(--lh-gold);
  border-radius: 4px;
  z-index: -1;
}

.lh-about__badge {
  display: inline-block;
  background: var(--lh-gold-pale);
  color: var(--lh-gold);
  font-family: var(--font-medium);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.lh-about__text {
  font-family: var(--font-light);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* ============================================================
   CARDS / ANGEBOTE
   ============================================================ */
.lh-card {
  background: var(--lh-white);
  border: 1px solid var(--lh-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.lh-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.lh-card__image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--lh-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lh-gold);
  font-family: var(--font-light);
  font-size: .85rem;
  letter-spacing: .06em;
}
.lh-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.lh-card__body {
  padding: 1.5rem;
}
.lh-card__tag {
  display: inline-block;
  font-family: var(--font-medium);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lh-gold);
  margin-bottom: .5rem;
}
.lh-card__title {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.lh-card__text {
  font-family: var(--font-light);
  font-size: .95rem;
  color: #666;
  margin-bottom: 1.25rem;
}
.lh-card__link {
  font-family: var(--font-medium);
  font-size: .9rem;
  color: var(--lh-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lh-card__link::after {
  content: '→';
  transition: transform .2s ease;
}
.lh-card__link:hover::after { transform: translateX(4px); }

/* ============================================================
   TESTIMONIAL / ZITAT
   ============================================================ */
.lh-quote {
  background: var(--lh-gold-pale);
  border-left: 5px solid var(--lh-gold);
  padding: 2rem 2.5rem;
  border-radius: 0 8px 8px 0;
}
.lh-quote__text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--lh-dark);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.lh-quote__author {
  font-family: var(--font-medium);
  font-size: .9rem;
  color: var(--lh-gold);
  letter-spacing: .04em;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.lh-cta {
  background: linear-gradient(135deg, #4a4730 0%, #757146 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--lh-white);
}
.lh-cta__title {
  color: var(--lh-white);
  margin-bottom: .75rem;
}
.lh-cta__text {
  font-family: var(--font-light);
  opacity: .9;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   GALERIE
   ============================================================ */
.lh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lh-gallery-item {
  aspect-ratio: 1;
  background: var(--lh-gold-pale);
  border-radius: 4px;
  overflow: hidden;
  cursor: default;
  position: relative;
  transition: var(--transition);
}
.lh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.lh-gallery-item:hover img { transform: scale(1.05); }
.lh-gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.lh-gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.lh-contact-box {
  background: var(--lh-gold-pale);
  border-radius: 8px;
  padding: 2.5rem;
  height: 100%;
}
.lh-contact-box__title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.lh-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.25rem;
}
.lh-contact-item__icon {
  width: 22px;
  color: var(--lh-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.lh-contact-item__label {
  font-family: var(--font-medium);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lh-gold);
  display: block;
  margin-bottom: 2px;
}
.lh-contact-item__value {
  font-family: var(--font-base);
  color: var(--lh-dark);
}
.lh-contact-item__value a { color: var(--lh-dark); }
.lh-contact-item__value a:hover { color: var(--lh-gold); }

.lh-form-control {
  width: 100%;
  border: 1px solid var(--lh-border);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  font-family: var(--font-base);
  font-size: .95rem;
  color: var(--lh-text);
  background: var(--lh-white);
  transition: var(--transition);
  outline: none;
  margin-bottom: 1rem;
}
.lh-form-control:focus {
  border-color: var(--lh-gold);
  box-shadow: 0 0 0 3px rgba(117,113,70,.12);
}
.lh-form-label {
  display: block;
  font-family: var(--font-medium);
  font-size: .85rem;
  margin-bottom: .3rem;
  color: var(--lh-dark);
}

/* Kontaktformular Feedback */
.lh-form-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--lh-gold-pale);
  border-left: 4px solid var(--lh-gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.lh-form-success svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
  stroke: var(--lh-gold);
  margin-top: 2px;
}
.lh-form-alert {
  background: #fdf2f2;
  border-left: 4px solid #c0392b;
  padding: .9rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #c0392b;
  font-size: .9rem;
  margin-bottom: 1rem;
}
.lh-form-error {
  color: #c0392b;
  font-size: .78rem;
  font-family: var(--font-base);
  margin-left: .4rem;
}
.lh-form-control--error {
  border-color: #c0392b !important;
}

/* Kontakt-Art Auswahl (E-Mail / Anruf) */
.lh-kontakt-art {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.lh-kontakt-art__option {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.1rem;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-base);
  font-size: .95rem;
  color: #555;
  transition: border-color .2s, color .2s, background .2s;
  user-select: none;
}
.lh-kontakt-art__option input[type="radio"] { display: none; }
.lh-kontakt-art__option svg { width: 18px; height: 18px; flex-shrink: 0; }
.lh-kontakt-art__option:hover { border-color: var(--lh-gold-light); color: var(--lh-dark); }
.lh-kontakt-art__option--active {
  border-color: var(--lh-gold);
  background: var(--lh-gold-pale);
  color: var(--lh-dark);
  font-weight: 500;
}
.lh-hidden { display: none !important; }
.lh-form-optional { font-size: .8rem; color: #999; font-weight: 400; }

/* YForm Kontaktformular Styling */
.yform-kontakt .form-group { margin-bottom: 1rem; }
.yform-kontakt label {
  display: block;
  font-family: var(--font-medium);
  font-size: .85rem;
  margin-bottom: .3rem;
  color: var(--lh-dark);
}
.yform-kontakt .lh-form-control,
.yform-kontakt input[type="text"],
.yform-kontakt input[type="email"],
.yform-kontakt textarea {
  width: 100%;
  border: 1px solid var(--lh-border);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  font-family: var(--font-base);
  font-size: .95rem;
  color: var(--lh-text);
  background: var(--lh-white);
  transition: var(--transition);
  outline: none;
  margin-bottom: 0;
}
.yform-kontakt input:focus,
.yform-kontakt textarea:focus {
  border-color: var(--lh-gold);
  box-shadow: 0 0 0 3px rgba(117,113,70,.12);
}
.yform-kontakt textarea { resize: vertical; min-height: 130px; }
.yform-kontakt .form-error,
.yform-kontakt .yform-field-error {
  color: #c0392b;
  font-size: .82rem;
  margin-top: .25rem;
  display: block;
}
.yform-kontakt .btn,
.yform-kontakt input[type="submit"],
.yform-kontakt button[type="submit"] {
  background: var(--lh-gold);
  color: var(--lh-white);
  border: 2px solid var(--lh-gold);
  font-family: var(--font-medium);
  padding: .65rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
}
.yform-kontakt input[type="submit"]:hover,
.yform-kontakt button[type="submit"]:hover {
  background: var(--lh-gold-light);
  border-color: var(--lh-gold-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.lh-footer {
  background: var(--lh-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.lh-footer__logo img { height: 100px; width: auto; filter: brightness(0) invert(1); }
.lh-footer__about {
  font-family: var(--font-light);
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 1rem;
  opacity: .7;
}
.lh-footer__heading {
  color: var(--lh-white);
  font-family: var(--font-medium);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.lh-footer__links { list-style: none; padding: 0; margin: 0; }
.lh-footer__links li { margin-bottom: .6rem; }
.lh-footer__links a {
  color: rgba(255,255,255,.65);
  font-family: var(--font-light);
  font-size: .9rem;
  transition: var(--transition);
}
.lh-footer__links a:hover { color: var(--lh-white); padding-left: 4px; }

.lh-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: .9rem;
  font-family: var(--font-light);
  font-size: .9rem;
}
.lh-footer__contact-item svg { flex-shrink: 0; margin-top: 3px; opacity: .6; }
.lh-footer__contact-item a { color: rgba(255,255,255,.65); }
.lh-footer__contact-item a:hover { color: var(--lh-white); }

.lh-footer__bottom {
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.lh-footer__copy {
  font-family: var(--font-light);
  font-size: .82rem;
  opacity: .55;
}
.lh-footer__legal { display: flex; gap: 18px; align-items: center; }
.lh-footer__credit img {
  height: 22px;
  width: auto;
  opacity: .55;
  transition: var(--transition);
}
.lh-footer__credit:hover img { opacity: 1; }
.lh-footer__legal a {
  color: rgba(255,255,255,.5);
  font-family: var(--font-light);
  font-size: .82rem;
}
.lh-footer__legal a:hover { color: var(--lh-white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .lh-navbar .navbar-collapse {
    margin-left: 0;
  }
  .lh-navbar .navbar-brand img {
    min-width: unset;
    width: 170px;
  }
  .lh-navbar .nav-link {
    padding: .7rem .5rem !important;
  }
  .lh-navbar .nav-link::after { display: none; }
  .lh-hero { min-height: auto; }
  .lh-hero__logo-top { padding-top: 80px; padding-bottom: 60px; }
  .lh-hero__content { padding: 0 1.25rem 40px; text-align: center; }
  .lh-hero__image { display: none; }
  /* Kleinere Buttons im Hero auf Mobile */
  .lh-hero__content .btn-lh-white,
  .lh-hero__content .btn-lh-outline {
    font-size: .8rem;
    padding: .45rem 1.1rem;
  }
  .lh-highlight .lh-highlight__divider { display: none; }
  .lh-highlight .lh-highlight__item { justify-content: center; }
  .lh-highlight .container > .row { row-gap: 16px !important; }
}

@media (max-width: 767px) {
  /* from-top → from-left auf Mobile (einspaltige Darstellung) */
  [data-anim="from-top"] { transform: translateX(-60px); }

  .section-pad { padding: 55px 0; }
  .lh-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-gallery-item--large { grid-column: span 1; grid-row: span 1; }
  .lh-quote { padding: 1.5rem; }
  /* Formular-Abstand auf Mobile */
  #kontakt .col-lg-7,
  #kontakt .col-lg-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
  /* Footer Mobile: alles zentriert */
  .lh-footer { text-align: center; }
  .lh-footer__logo { display: flex; justify-content: center; }
  .lh-footer__links { padding: 0; }
  .lh-footer__contact-item { justify-content: center; }
  .lh-footer__bottom { flex-direction: column; align-items: center; text-align: center; }
  .lh-footer__legal { justify-content: center; }
}

@media (max-width: 575px) {
  .lh-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
