@charset "utf-8";

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  width:100%;
  min-height:100vh;
  background:#dfeac0;
  font-family:Arial, Helvetica, sans-serif;
  color:#666;
  font-size:1.2rem;
  line-height:1.6;
  overflow-x:hidden;
}

body.external-services-enabled{
  font-family:"Quicksand", Arial, Helvetica, sans-serif;
}

body.modal-open,
body.nav-open{
  overflow:hidden;
}

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

h1{
  font-size:1.4rem;
  color:#9fa706;
  font-weight:500;
  margin-bottom:2px;
}

a{
  text-decoration:none;
  color:#333;
}

.line{
  margin:0 0 20px 30px;
  width:300px;
  max-width:70%;
  height:4px;
  background:#9fa706;
}

#about,
#service,
#leistung,
#buffet,
#kontakt,
#referenzen{
  scroll-margin-top:40px;
}

/* HEADER */

header{
  width:min(80%, 1400px);
  margin:50px auto;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  border-radius:15px;
}

.hero{
  width:100%;
  min-height:70vh;
  margin:0;
  padding:120px;
  border-radius:15px;
  background:url("../img/hero.jpg") center center / cover no-repeat;
  position:relative;
  border:3px solid #fff;
  box-shadow:1px 1px 9px 3px rgba(0,0,0,0.41);
}

.hero h2{
  position:absolute;
  bottom:60px;
  left:120px;
  right:40px;
  font-size:clamp(1.8rem, 4vw, 3.5rem);
  text-align:left;
  color:#fff;
  text-shadow:3px 1px 2px rgba(0,0,0,0.47);
  line-height:1.2;
}

.logo{
  width:min(50%, 420px);
  height:auto;
}

.menu{
  width:90%;
  background:#7f8504;
  margin:0 auto 0 auto;
  box-shadow:1px 1px 5px 1px rgba(0,0,0,0.41);
  position:relative;
  z-index:50;
}

.mobile-nav-logo{
  display:none;
}

.mobile-nav-logo img{
  display:block;
  width:auto;
  height:60px;
}

.nav-toggle{
  display:none;
}

.nav-list{
  width:100%;
  min-height:60px;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:center;
  justify-content:space-around;
  padding:0 20px;
  list-style:none;
}

.nav-list li{
  text-align:center;
}

.nav-list a{
  color:#fff;
  line-height:40px;
  font-weight:500;
  font-size:1.02rem;
  text-transform:uppercase;
  transition:.3s ease;
  cursor:pointer;
  display:inline-block;
  padding:0 15px;
  background:transparent;
  border:none;
}

.nav-list a:hover{
  background:#6b7200;
  color:#e5e5e5;
  border-radius:5px;
}

/* CONTENT */

#about{
  width:min(80%, 1400px);
  margin:80px auto;
  display:flex;
  gap:40px;
  align-items:flex-start;
  justify-content:space-between;
}

.welcome{
  width:65%;
  text-align:left;
  margin:0 0 0 5%;
}

.info{
  width:25%;
  text-align:right;
  margin:0 5%;
  font-size:1rem;
  border-left:1px solid #7f8504;
  border-radius:5px;
  padding:20px 0 20px 4%;
}

.info-img{
  width:100%;
  padding-left:30%;
  margin-top:20px;
  margin-bottom:15px;
}

.cta-link,
.service-cta-link,
.buffet-cta,
.modal a{
  padding:10px 20px;
  background:#7f8504;
  color:#fff;
  border-radius:8px;
  text-align:center;
  font-size:1rem;
  border:2px solid #fff;
  box-shadow:1px 1px 5px 1px rgba(0,0,0,0.41);
  transition:background .35s ease, transform .25s ease, box-shadow .35s ease;
}

.cta-link:hover,
.service-cta-link:hover,
.buffet-cta:hover,
.modal a:hover{
  background:#8d9406;
  color:#fff;
  transform:translateY(-2px);
}

.cta-link{
  display:inline-block;
  margin-top:20px;
}

#service{
  width:100%;
  margin:50px auto;
  padding:60px 10%;
  background:#fff;
  border-top:2px solid #7f8504;
  border-bottom:2px solid #7f8504;
}

.service-content{
  width:100%;
  display:flex;
  gap:50px;
  align-items:stretch;
  justify-content:space-around;
}

.service-box{
  width:35%;
  position:relative;
  padding-bottom:90px;
  font-size:1rem;
}

.service-img{
  width:100%;
  margin:0 0 10px 0;
  border:2px solid #fff;
  box-shadow:1px 1px 5px 1px rgba(0,0,0,0.41);
}

.service-cta-link{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  white-space:nowrap;
}

.service-cta-link:hover{
  transform:translateX(-50%) translateY(-2px);
}

#leistung{
  width:min(90%, 1400px);
  margin:80px auto;
  display:flex;
  gap:40px;
  align-items:flex-start;
  justify-content:center;
  font-size:1.1rem;
}

.leistung-links{
  width:40%;
  text-align:left;
  padding-right:10%;
}

.leistung-rechts{
  width:50%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
}

.leistung-content{
  width:100%;
  display:flex;
  gap:20px;
  align-items:flex-start;
  justify-content:flex-start;
  margin-bottom:30px;
}

.leistung-rechts .leistung-box1,
.leistung-rechts .leistung-box2{
  text-align:left;
}

.leistung-box1{width:68%;}
.leistung-box2{width:25%;}

#leistung ul{
  padding:0 0 0 30px;
  list-style-type:disc;
}

#leistung li a{
  display:block;
  padding:3px 0;
  color:#333;
}

.leistung-note{
  color:#7f8504;
  font-size:1rem;
  margin-top:10px;
}

/* BUFFETS */

#buffet{
  width:min(80%, 1400px);
  margin:120px auto;
}

.buffets{
  display:flex;
  flex-direction:row;
  align-items:stretch;
  justify-content:center;
  flex-wrap:wrap;
  gap:0;
}

.buffet-box{
  width:21%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  padding:2px;
  margin:20px 2% 80px 2%;
}

.buffet-headline{
  width:100%;
  height:96px;
  background:#7f8504;
  color:#fff;
  text-align:center;
  border:2px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  box-shadow:1px 1px 5px 1px rgba(0,0,0,0.41);
  font-size:1rem;
  line-height:1.35;
}

.buffet-img{
  width:100%;
  border:2px solid #fff;
  box-shadow:1px 1px 5px 1px rgba(0,0,0,0.41);
}

.buffet-content{
  width:100%;
  padding:20px 2%;
  position:relative;
  padding-bottom:60px;
}

.buffet-cta{
  cursor:pointer;
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  white-space:nowrap;
}

.buffet-cta:hover{
  transform:translateX(-50%) translateY(-2px);
}

.buffet-note{
  font-size:1.1rem;
  color:#333;
  text-align:center;
  margin:8px 0;
}

/* KONTAKT */

#kontakt{
  width:100%;
  background:rgba(0,0,0,0.05);
  padding:60px 20px;
}

.kontakt-container{
  width:min(900px, 100%);
  margin:0 auto;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.65);
  border-radius:20px;
  padding:34px 30px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.consent-hint{
  margin:0 0 22px 0;
  padding:14px 16px;
  border-left:4px solid #7f8504;
  background:#f5f8e8;
  color:#4b4f22;
  font-size:.98rem;
  border-radius:10px;
}

.consent-hint.hidden{
  display:none;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.form-group{
  position:relative;
}

.form-group.full{
  grid-column:1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid rgba(127,133,4,.25);
  border-radius:12px;
  background:#fff;
  padding:18px 16px 14px 16px;
  font:inherit;
  color:#333;
  outline:none;
  transition:border-color .25s ease, box-shadow .25s ease;
}

.form-group textarea{
  min-height:180px;
  resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:#7f8504;
  box-shadow:0 0 0 4px rgba(127,133,4,.10);
}

.form-group label{
  position:absolute;
  left:14px;
  top:-10px;
  padding:0 8px;
  background:#fff;
  color:#7f8504;
  font-size:.9rem;
  font-weight:600;
  border-radius:999px;
}

#kontaktFieldset{
  border:none;
}

#kontaktFieldset[disabled]{
  opacity:.68;
}

.submit-btn{
  margin-top:24px;
  padding:12px 24px;
  background:#7f8504;
  border:2px solid #fff;
  color:#fff;
  border-radius:10px;
  font:inherit;
  font-size:1rem;
  cursor:pointer;
  box-shadow:1px 1px 5px 1px rgba(0,0,0,0.25);
  transition:background .3s ease, transform .25s ease;
}

.submit-btn:hover{
  background:#8d9406;
  transform:translateY(-2px);
}

/* REFERENZEN */

.referenzen{
  width:min(80%, 1400px);
  margin:80px auto;
}

.referenzen-box{
  background:rgba(255,255,255,.45);
  border:1px solid rgba(255,255,255,.5);
  padding:40px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* REFERENZEN */

.referenzen-shell{
  overflow:hidden;
}

.referenzen-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:30px;
}


.referenzen-meta{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}

.referenzen-meta p{
  max-width:none;
  font-size:1rem;
  color:#555;
  text-align:right;
}

.google-reviews-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  background:#fff;
  color:#4285f4;
  border:1px solid rgba(66,133,244,.18);
  border-radius:999px;
  font-size:.95rem;
  font-weight:600;
  box-shadow:0 8px 18px rgba(66,133,244,.12);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.google-reviews-link:hover{
  transform:translateY(-1px);
  background:#f7faff;
  box-shadow:0 12px 22px rgba(66,133,244,.16);
}

.review-carousel{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
}

.review-viewport{
  flex:1 1 auto;
  overflow:hidden;
}

.review-track{
  --review-visible:4.25;
  --review-gap:18px;
  display:flex;
  gap:var(--review-gap);
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:8px 0 12px 0;
}

.review-track::-webkit-scrollbar{
  display:none;
}

.review-card{
  flex:0 0 calc((100% - (var(--review-gap) * (var(--review-visible) - 1))) / var(--review-visible));
  min-height:270px;
  background:#fff;
  border:1px solid rgba(127,133,4,.14);
  border-radius:20px;
  padding:22px 20px 20px 20px;
  box-shadow:0 12px 26px rgba(0,0,0,.08);
  scroll-snap-align:start;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.review-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}

.review-card-top h3{
  font-size:1.06rem;
  line-height:1.3;
  color:#2f3415;
  margin-bottom:2px;
}

.review-card-top p{
  font-size:.9rem;
  color:#7a7a7a;
}

.review-badge{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#4285f4;
  font-size:1.15rem;
  font-weight:700;
  border:1px solid rgba(66,133,244,.18);
  box-shadow:0 8px 18px rgba(66,133,244,.12);
  flex:0 0 auto;
}

.review-stars{
  margin-bottom:14px;
  color:#fbbc04;
  letter-spacing:2px;
  font-size:1rem;
}

.review-text{
  font-size:.98rem;
  line-height:1.7;
  color:#4f4f4f;
height:100px;
overflow-y:hidden;
}

.review-nav{
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#7f8504;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(127,133,4,.24);
  transition:transform .25s ease, background .25s ease, opacity .25s ease;
  flex:0 0 auto;
}

.review-nav span{
  font-size:1.8rem;
  line-height:1;
  margin-top:-2px;
}

.review-nav:hover{
  transform:translateY(-2px);
  background:#8d9406;
}

.review-nav:disabled{
  opacity:.45;
  cursor:default;
  transform:none;
}

/* SUCCESS POPUP */

.success-popup{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.28);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  z-index:20000;
}

.success-popup.active{
  display:flex;
}

.popup-box{
  width:min(420px, 92vw);
  background:#fff;
  border-radius:18px;
  padding:28px 24px;
  text-align:center;
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.popup-box h2{
  color:#7f8504;
  margin-bottom:12px;
}

.popup-box p{
  margin-bottom:20px;
  font-size:1rem;
}

.popup-box button{
  padding:10px 20px;
  background:#7f8504;
  color:#fff;
  border:none;
  border-radius:10px;
  cursor:pointer;
}

/* BUFFET MODAL */

.modal-overlay{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .45s ease, visibility .45s ease;
  z-index:9999;
}

.modal-overlay.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(20,20,20,.30);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.modal{
  position:relative;
  z-index:2;
  width:min(720px, 92vw);
  max-height:85vh;
  overflow:auto;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.7);
  border-radius:18px;
  padding:42px 30px 30px 30px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  transform:scale(.88) translateY(20px);
  opacity:0;
  transition:transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
  display:none;
}

.modal.active{
  display:block;
  opacity:1;
  transform:scale(1) translateY(0);
}

.modal h2{
  color:#7f8504;
  margin-bottom:18px;
  font-size:1.6rem;
  font-weight:600;
}

.modal h3{
  color:#7f8504;
  margin-top:20px;
  margin-bottom:10px;
  font-size:1.2rem;
  font-weight:700;
}

.modal h4{
  color:#7f8504;
  margin-top:15px;
  margin-bottom:24px;
  font-size:1.5rem;
  font-weight:800;
  text-align:right;
}

.modal p{
  font-size:1rem;
  line-height:1.7;
  margin-bottom:16px;
}

.modal a{
  display:flex;
  width:100%;
  justify-content:center;
  align-items:center;
}

.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#7f8504;
  color:#fff;
  font-size:1.6rem;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .25s ease, background .3s ease;
}

.modal-close:hover{
  background:#5f6503;
  transform:rotate(90deg) scale(1.05);
}

.modal-img{
  width:100%;
  margin:20px auto;
  border-radius:12px;
}

/* LEGAL MODAL */

.legal-overlay{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .45s ease, visibility .45s ease;
  z-index:10000;
}

.legal-overlay.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.legal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(20,20,20,.34);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.legal-modal{
  position:relative;
  z-index:2;
  width:min(920px, 96vw);
  max-height:88vh;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.75);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
  transform:scale(.9) translateY(18px);
  opacity:0;
  transition:transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}

.legal-overlay.active .legal-modal{
  opacity:1;
  transform:scale(1) translateY(0);
}

.legal-topbar{
  position:sticky;
  top:0;
  z-index:3;
  background:#f5f8e8;
  border-bottom:1px solid rgba(127,133,4,.15);
  padding:26px 70px 20px 30px;
}

.legal-topbar h2{
  color:#7f8504;
  font-size:1.7rem;
  margin-bottom:14px;
}

.legal-jump-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.legal-jump-btn{
  display:inline-block;
  padding:8px 16px;
  background:#7f8504;
  color:#fff;
  border-radius:999px;
  border:2px solid #fff;
  box-shadow:1px 1px 5px 1px rgba(0,0,0,0.16);
  transition:.3s ease;
  cursor:pointer;
  font-size:.95rem;
}

.legal-jump-btn:hover{
  background:#8d9406;
  transform:translateY(-1px);
}

.legal-content{
  max-height:calc(88vh - 110px);
  overflow:auto;
  padding:30px;
  scroll-behavior:smooth;
}

.legal-section + .legal-section{
  margin-top:40px;
  padding-top:30px;
  border-top:1px solid rgba(127,133,4,.2);
}

.legal-section h3{
  color:#7f8504;
  font-size:1.45rem;
  margin-bottom:18px;
}

.legal-section p{
  font-size:1rem;
  line-height:1.75;
  margin-bottom:14px;
  color:#555;
}

.legal-section a{
  color:#5f6503;
  font-weight:600;
}

.legal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#7f8504;
  color:#fff;
  font-size:1.7rem;
  line-height:1;
  cursor:pointer;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .25s ease, background .3s ease;
}

.legal-close:hover{
  background:#5f6503;
  transform:rotate(90deg) scale(1.05);
}

/* COOKIE */

.cookie-wrap{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%) translateY(18px);
  width:min(760px, calc(100vw - 24px));
  z-index:19000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.cookie-wrap.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.cookie-banner{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.8);
  border-radius:22px;
  box-shadow:0 18px 50px rgba(0,0,0,.20);
  padding:24px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.cookie-head h2{
  color:#7f8504;
  font-size:1.35rem;
  margin-bottom:8px;
}

.cookie-head p{
  font-size:.98rem;
  line-height:1.65;
  color:#555;
}

.cookie-options{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.cookie-option{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
  padding:14px 16px;
  background:#f5f8e8;
  border:1px solid rgba(127,133,4,.14);
  border-radius:14px;
}

.cookie-option span{
  font-size:.95rem;
  color:#4c4f2a;
}

.cookie-option input{
  width:20px;
  height:20px;
  margin-top:4px;
  accent-color:#7f8504;
  flex:0 0 auto;
}

.cookie-actions{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}

.cookie-btn{
  border:none;
  cursor:pointer;
  border-radius:12px;
  padding:12px 18px;
  font:inherit;
  font-size:.98rem;
  transition:transform .25s ease, background .25s ease, color .25s ease;
}

.cookie-btn:hover{
  transform:translateY(-1px);
}

.cookie-btn-light{
  background:#eef2dc;
  color:#5f6503;
}

.cookie-btn-light:hover{
  background:#e5ebc7;
}

.cookie-btn-primary{
  background:#7f8504;
  color:#fff;
  box-shadow:0 10px 24px rgba(127,133,4,.25);
}

.cookie-btn-primary:hover{
  background:#8d9406;
}

/* FOOTER */

footer{
  width:100%;
  margin:0 auto;
  padding:28px 20px;
  background:#5f6503;
  color:#fff;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:flex-start;
  justify-content:center;
  gap:40px;
}

footer .box{
  margin:0 3%;
  font-size:1rem;
  font-weight:300;
}

footer .box a{
  color:#fff;
  font-weight:500;
  transition:.4s all ease;
}

footer .box a:hover{
  color:#dfeac0;
}

.footer-links,
.footer-meta{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}

.footer-text-link{
  font-weight:500;
}

/* SCROLL TOP BUTTON */

.scroll-top-btn{
  position:fixed;
  right:18px;
  bottom:110px;
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:rgba(127, 133, 4, 0.92);
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  z-index:21000;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s ease, background .25s ease;
}

.scroll-top-btn:hover{
  background:rgba(141, 148, 6, 0.96);
}

.scroll-top-btn.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.scroll-top-btn span{
  line-height:1;
  display:block;
}

/* TABLET + MOBILE */

@media (max-width: 980px){
  #about,
  #service,
  #leistung,
  #buffet,
  #kontakt,
  #referenzen{
    scroll-margin-top:95px;
  }

  header,
  #about,
  #buffet{
    width:min(90%, 1200px);
  }

  header{
    margin-top:72px;
  }

  .hero{
    width:100%;
    margin-top:30px;
    padding:0;
    min-height:30vh;
    border:none;
    border-radius:0;
    box-shadow:none;
  }

  .hero h2{
    left:60px;
    bottom:40px;
  }

  .hero .logo{
    display:none;
  }

  .menu{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:72px;
    margin:0;
    background:#7f8504;
    box-shadow:0 4px 18px rgba(0,0,0,.18);
    z-index:12000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 16px;
  }

  .mobile-nav-logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    height:100%;
    flex:0 0 auto;
    z-index:12003;
  }

  .mobile-nav-logo img{
    height:50px;
    width:auto;
    max-width:150px;
  }

  .nav-toggle{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    position:relative;
    width:44px;
    height:44px;
    background:transparent;
    border:none;
    cursor:pointer;
    padding:0;
    margin:0 0 0 auto;
    z-index:12004;
  }

  .nav-toggle span{
    display:block;
    width:28px;
    height:3px;
    background:#fff;
    border-radius:3px;
    margin:4px 0;
    transform-origin:center;
    transition:transform .28s ease, opacity .22s ease;
  }

  .nav-toggle.active span:nth-child(1){
    transform:translateY(11px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2){
    opacity:0;
    transform:scaleX(.6);
  }

  .nav-toggle.active span:nth-child(3){
    transform:translateY(-11px) rotate(-45deg);
  }

  .nav-list{
    position:fixed;
    top:72px;
    left:0;
    width:100%;
    height:calc(100dvh - 72px);
    background:rgba(127, 133, 4, 0.35);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    padding:0 0 20px 0;
    overflow:auto;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-16px);
    transition:opacity .28s ease, transform .28s ease, visibility .28s ease;
    z-index:12001;
  }

  .nav-list.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
    padding:12px 0 20px 0;
  }

  .nav-list li{
    width:100%;
  }

  .nav-list a{
    display:block;
    width:100%;
    padding:18px 24px;
    text-align:left;
    line-height:1.4;
    border-radius:0;
    font-size:1rem;
  }

  #about,
  #leistung,
  .service-content{
    flex-direction:column;
  }

  .welcome,
  .info,
  .leistung-links,
  .leistung-rechts,
  .service-box{
    width:100%;
    margin:0;
    padding-right:0;
  }

  .info{
    text-align:left;
    border-left:none;
    border-top:1px solid #7f8504;
    padding:30px 0 0 0;
  }

  .info-img{
    max-width:150px;
    padding-left:0;
  }

  .leistung-content{
    flex-direction:column;
  }

  .leistung-box1,
  .leistung-box2{
    width:100%;
  }

  .buffet-box{
    width:46%;
    margin:20px 2% 60px 2%;
  }

  .referenzen-header{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:24px;
  }

  .referenzen-meta{
    align-items:flex-start;
  }

  .referenzen-meta p{
    text-align:left;
  }

  .review-track{
    --review-visible:2.2;
  }

  .review-nav{
    width:44px;
    height:44px;
  }

  footer{
    flex-wrap:wrap;
    justify-content:flex-start;
  }

  footer .box{
    width:calc(50% - 40px);
    margin:0;
  }
}

/* MOBILE */

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

  header{
    width:92%;
    margin:72px auto 40px auto;
  }

  .hero{
    padding:90px 22px 34px 22px;
    min-height:30vh;
  }

  .hero h2{
    left:22px;
    right:22px;
    bottom:24px;
  }

  .hero .logo{
    display:none;
  }

  .menu{
    padding:0 14px;
  }

  .mobile-nav-logo img{
    height:50px;
  }

  #about,
  #buffet,
  #leistung,
  .referenzen{
    width:92%;
    margin:60px auto;
  }

  .referenzen-box{
    padding:18px 14px;
    border-radius:16px;
  }

  #service{
    padding:50px 6%;
  }

  .line{
    width:180px;
    margin:0 0 18px 0;
  }

  .referenzen-header{
    gap:14px;
    margin-bottom:16px;
  }

  .referenzen-meta{
    gap:10px;
  }

  .referenzen-meta p{
    font-size:.9rem;
    line-height:1.5;
  }

  .google-reviews-link{
    width:100%;
    padding:9px 14px;
    font-size:.86rem;
    line-height:1.4;
    text-align:center;
  }

  .buffet-box{
    width:100%;
    margin:14px 0 42px 0;
  }

  .buffet-headline{
    height:88px;
  }

  .buffet-content{
    padding-bottom:70px;
  }

  .service-box{
    padding-bottom:78px;
  }

  .review-carousel{
    flex-wrap:wrap;
    gap:8px;
  }

  .review-viewport{
    order:1;
    width:100%;
  }

  .review-track{
    --review-visible:1.08;
    --review-gap:10px;
    padding-bottom:4px;
  }

  .review-card{
    min-height:auto;
    padding:14px 12px;
    border-radius:16px;
  }

  .review-card-top{
    gap:10px;
    margin-bottom:10px;
  }

  .review-card-top h3{
    font-size:.96rem;
    line-height:1.25;
  }

  .review-card-top p{
    font-size:.82rem;
  }

  .review-badge{
    width:34px;
    height:34px;
    font-size:1rem;
  }

  .review-stars{
    margin-bottom:10px;
    font-size:.88rem;
    letter-spacing:1px;
  }

  .review-text{
    font-size:.88rem;
    line-height:1.55;
  }

  .review-nav{
    order:2;
    width:34px;
    height:34px;
    margin-top:4px;
  }

  .review-nav span{
    font-size:1.35rem;
  }

  .review-nav-prev{
    margin-left:auto;
  }

  .service-cta-link,
  .buffet-cta{
    font-size:.95rem;
  }

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

  .modal-overlay,
  .legal-overlay{
    padding:14px;
  }

  .modal{
    width:100%;
    max-height:88vh;
    padding:38px 18px 22px 18px;
    border-radius:16px;
  }

  .modal h2{
    font-size:1.35rem;
  }

  .modal h3{
    font-size:1.08rem;
  }

  .modal h4{
    font-size:1.25rem;
  }

  .legal-modal{
    width:100%;
    max-height:90vh;
    border-radius:18px;
  }

  .legal-topbar{
    padding:22px 62px 18px 18px;
  }

  .legal-topbar h2{
    font-size:1.35rem;
  }

  .legal-content{
    padding:20px 18px 24px 18px;
    max-height:calc(90vh - 102px);
  }

  .cookie-wrap{
    width:calc(100vw - 16px);
    bottom:8px;
  }

  .cookie-banner{
    padding:18px;
    border-radius:18px;
  }

  .cookie-actions{
    justify-content:stretch;
  }

  .cookie-btn{
    width:100%;
  }

  footer{
    padding:24px 18px 110px 18px;
    flex-direction:column;
    gap:24px;
  }

  footer .box{
    width:100%;
  }

  .scroll-top-btn{
    right:14px;
    bottom:86px;
    width:48px;
    height:48px;
    font-size:1.2rem;
  }
}
@media (max-width: 1180px){
  .review-track{
    --review-visible:3.25;
  }
}


.review-card-note{
  background:linear-gradient(180deg, #ffffff 0%, #f7f9ef 100%);
}

.review-card-note .review-text{
  color:#4b4f22;
}
