/* ============================================================
   ERDBAU JAHIC — Erdbau · Bau · Transporte · Mietpark
   Anthrazit + Sicherheitsgelb, industriell
   ============================================================ */

:root{
  --ink:#121212;
  --ink-2:#1a1a1a;
  --ink-3:#262626;
  --ink-4:#333333;
  --paper:#f4f2ec;
  --paper-2:#ebe8df;
  --white:#ffffff;
  --yellow:#ffc400;
  --yellow-dark:#e0a800;
  --yellow-deep:#b8860b;
  --muted:rgba(255,255,255,.66);
  --muted-2:rgba(255,255,255,.45);
  --muted-dark:#5c5c5c;
  --line:rgba(255,255,255,.12);
  --line-dark:rgba(0,0,0,.12);
  --font-display:'Bebas Neue',sans-serif;
  --font-body:'Inter',sans-serif;
  --font-mono:'JetBrains Mono',monospace;
  --nav-height:64px;
  --radius:0px;
  --shadow:0 10px 30px rgba(0,0,0,.25);
  --grain:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

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

html{scroll-behavior:smooth}
html,body{overflow-x:hidden}
body{
  font-family:var(--font-body);
  background:var(--ink);
  color:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul{list-style:none}

.container{max-width:1200px;margin:0 auto;padding:0 20px}
.section{padding:72px 0}
.section-dark{background:var(--ink)}
.section-paper{background:var(--paper);color:#1c1c1c}
.section-paper h2,.section-paper h3{color:#161616}

.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--yellow);
  margin-bottom:14px;
}
.eyebrow-light{color:var(--yellow)}
.section-paper .eyebrow{color:var(--yellow-deep)}

h1,h2,h3{font-family:var(--font-display);font-weight:400;line-height:1.05;letter-spacing:.02em}
h2{font-size:clamp(34px,5vw,54px)}
h3{font-size:clamp(24px,3vw,30px)}

.section-head{max-width:640px;margin-bottom:44px}
.section-head p{margin-top:14px;color:var(--muted);font-size:17px}
.section-paper .section-head p{color:var(--muted-dark)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:16px 28px;
  border:1px solid transparent;
  cursor:pointer;
  transition:background .2s,border-color .2s,transform .15s,color .2s;
}
.btn svg{width:18px;height:18px;flex:none}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}

.btn-primary{background:var(--yellow);color:#161616}
.btn-primary:hover{background:var(--yellow-dark)}
.btn-outline{border-color:rgba(255,255,255,.35);color:var(--white);background:transparent}
.btn-outline:hover{border-color:var(--yellow);color:var(--yellow)}
.btn-dark{background:var(--ink);color:var(--white)}
.btn-dark:hover{background:var(--ink-4)}
.btn-wa{background:#25d366;color:#fff}
.btn-wa:hover{background:#1fb757}
.btn-ghost-dark{border-color:var(--line-dark);color:#1c1c1c}
.btn-ghost-dark:hover{border-color:#161616}

/* ---------------- NAV ---------------- */
.nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(18,18,18,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  height:var(--nav-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.nav-logo{display:flex;align-items:center;gap:10px;flex:none}
.nav-logo img{height:30px;width:auto}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{
  font-family:var(--font-mono);
  font-size:13px;
  font-weight:500;
  letter-spacing:.06em;
  color:var(--muted);
  transition:color .2s;
  padding:12px 4px;
  line-height:1;
  display:inline-flex;
  align-items:center;
}
.nav-links a:hover,.nav-links a.active{color:var(--yellow)}
.nav-cta{
  flex:none;
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  background:var(--yellow);
  color:#161616;
  padding:11px 18px;
  transition:background .2s;
}
.nav-cta:hover{background:var(--yellow-dark)}
.menu-toggle{
  display:none;
  background:none;
  border:1px solid var(--line);
  color:var(--white);
  width:42px;height:42px;
  font-size:20px;
  cursor:pointer;
}

.nav-overlay{
  display:none;
  position:fixed;inset:0;
  background:rgba(0,0,0,.6);
  z-index:1001;
}
.nav-overlay.open{display:block}
.mobile-nav{
  display:none;
  position:fixed;
  top:0;right:0;bottom:0;
  width:min(320px,86vw);
  background:var(--ink-2);
  border-left:1px solid var(--line);
  z-index:1002;
  padding:24px 28px;
  flex-direction:column;
  gap:6px;
  transform:translateX(100%);
  transition:transform .28s ease;
}
.mobile-nav.open{transform:translateX(0)}
.mobile-nav .close-btn{
  align-self:flex-end;
  background:none;border:none;
  color:var(--white);font-size:26px;cursor:pointer;
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:10px;
}
.mobile-nav a{
  font-family:var(--font-mono);
  font-size:15px;
  letter-spacing:.06em;
  padding:12px 0;
  color:var(--muted);
  border-bottom:1px solid var(--line);
}
.mobile-nav a:hover{color:var(--yellow)}
.mobile-nav .mobile-order{margin-top:18px;text-align:center;border:none}

/* ---------------- HERO ---------------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  padding:calc(var(--nav-height) + 40px) 0 56px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
}
.hero-gradient{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg,rgba(18,18,18,.88) 0%,rgba(18,18,18,.55) 40%,rgba(18,18,18,.92) 100%),
    linear-gradient(90deg,rgba(18,18,18,.6) 0%,rgba(18,18,18,.15) 60%);
}
.hero-grain{position:absolute;inset:0;background-image:var(--grain);pointer-events:none}
.hero-content{position:relative;z-index:2;max-width:760px}
.hero h1{
  font-size:clamp(56px,10vw,120px);
  text-transform:uppercase;
  letter-spacing:.03em;
}
.hero h1 .hl{color:var(--yellow)}
.hero-sub{
  margin-top:18px;
  font-size:clamp(17px,2.2vw,21px);
  color:var(--white);
  max-width:560px;
  font-weight:500;
}
.hero-sub .sep{color:var(--yellow)}
.hero-actions{margin-top:34px;display:flex;flex-wrap:wrap;gap:14px}
.hero-stats{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  max-width:640px;
}
.hero-stats .stat{
  background:rgba(18,18,18,.72);
  padding:16px 18px;
}
.hero-stats .stat-num{
  display:block;
  font-family:var(--font-display);
  font-size:30px;
  letter-spacing:.04em;
  color:var(--yellow);
  line-height:1;
}
.hero-stats .stat-label{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted-2);
  margin-top:6px;
}

/* ---------------- SERVICES GRID ---------------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}
.service-card{
  position:relative;
  background:var(--ink-2);
  border:1px solid var(--line);
  padding:30px 26px;
  min-height:230px;
  display:flex;
  flex-direction:column;
  transition:border-color .2s,transform .2s,background .2s;
}
.service-card:hover{border-color:var(--yellow);transform:translateY(-4px);background:var(--ink-3)}
.service-card .s-icon{
  width:52px;height:52px;
  display:flex;align-items:center;justify-content:center;
  background:var(--yellow);
  color:#161616;
  margin-bottom:22px;
}
.service-card .s-icon svg{width:28px;height:28px}
.service-card h3{font-size:26px;letter-spacing:.04em}
.service-card p{color:var(--muted);font-size:14.5px;margin-top:10px;flex:1}
.service-card .s-link{
  margin-top:20px;
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--yellow);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.service-card .s-link svg{width:15px;height:15px;transition:transform .2s}
.service-card:hover .s-link svg{transform:translateX(4px)}

/* ---------------- MIETPARK TEASER / PRICE LIST ---------------- */
.rent-band{
  background:var(--ink-2);
  border:1px solid var(--line);
  border-top:4px solid var(--yellow);
}
.rent-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:0;
  border-top:1px solid var(--line);
}
.rent-item{
  padding:22px 24px;
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}
.rent-item .r-name{font-size:15px;font-weight:600}
.rent-item .r-sub{font-family:var(--font-mono);font-size:12px;color:var(--muted-2);margin-top:2px}
.rent-item .r-price{
  font-family:var(--font-display);
  font-size:26px;
  color:var(--yellow);
  letter-spacing:.03em;
  white-space:nowrap;
}
.rent-item .r-price small{font-size:14px;color:var(--muted-2)}
.rent-note{
  padding:18px 24px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.06em;
  color:var(--muted-2);
}

/* ---------------- ABOUT ---------------- */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.about-media{position:relative}
.about-media img{
  width:100%;
  height:420px;
  object-fit:cover;
  border:1px solid var(--line);
}
.about-media .about-badge{
  position:absolute;
  left:-14px;bottom:26px;
  background:var(--yellow);
  color:#161616;
  padding:16px 20px;
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:var(--shadow);
}
.about-list{margin-top:22px;display:grid;gap:12px}
.about-list li{display:flex;gap:12px;align-items:flex-start;font-size:15.5px}
.about-list .tick{color:var(--yellow);font-weight:700;flex:none;margin-top:2px}
.section-paper .about-list .tick{color:var(--yellow-deep)}
.about-facts{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line-dark);
  border:1px solid var(--line-dark);
}
.about-facts .fact{background:var(--paper);padding:14px 16px}
.about-facts .fact b{display:block;font-family:var(--font-display);font-size:30px;color:#161616;font-weight:400;letter-spacing:.04em}
.about-facts .fact b .y{color:var(--yellow-deep)}
.about-facts .fact span{font-family:var(--font-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted-dark)}

/* ---------------- GALLERY ---------------- */
.gal-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:12px;
}
.gal-item{
  position:relative;
  overflow:hidden;
  background:var(--ink-2);
  border:1px solid var(--line);
  cursor:pointer;
  aspect-ratio:4/3;
}
.gal-item img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .4s ease,filter .3s;
}
.gal-item:hover img{transform:scale(1.05)}
.gal-item .gal-cap{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:30px 14px 12px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.78));
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--white);
  opacity:0;
  transition:opacity .3s;
}
.gal-item:hover .gal-cap{opacity:1}

/* ---------------- REVIEWS ---------------- */
.rev-head{display:flex;align-items:center;gap:24px;margin-bottom:36px;flex-wrap:wrap}
.rev-big{
  display:flex;flex-direction:column;gap:6px;
  background:var(--ink-2);
  border:1px solid var(--line);
  padding:22px 28px;
}
.rev-big .score{font-family:var(--font-display);font-size:54px;line-height:1;color:var(--yellow)}
.rev-big .stars{color:var(--yellow);font-size:18px;letter-spacing:3px}
.rev-big .meta{font-family:var(--font-mono);font-size:12px;color:var(--muted-2)}
.rev-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px}
.rev-card{
  background:var(--ink-2);
  border:1px solid var(--line);
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.rev-card .stars{color:var(--yellow);font-size:14px;letter-spacing:2px}
.rev-card blockquote{font-size:15px;color:var(--white);font-style:italic;line-height:1.55}
.rev-card .who{font-family:var(--font-mono);font-size:12px;color:var(--muted-2);text-transform:uppercase;letter-spacing:.08em;margin-top:auto}

/* ---------------- CTA BAND ---------------- */
.cta-band{
  position:relative;
  background:var(--yellow);
  color:#161616;
  padding:56px 0;
}
.cta-band .eyebrow{color:#5c4300}
.cta-band h2{font-size:clamp(36px,5.5vw,64px)}
.cta-band p{margin-top:10px;max-width:560px;font-size:16.5px;color:#3a3a3a}
.cta-actions{margin-top:30px;display:flex;flex-wrap:wrap;gap:14px}

/* ---------------- CONTACT PAGE ---------------- */
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
.contact-panel{background:var(--ink-2);border:1px solid var(--line);padding:32px}
.contact-panel h3{font-size:28px;margin-bottom:8px}
.contact-panel .c-sub{color:var(--muted);margin-bottom:24px}
.c-row{display:flex;gap:16px;padding:14px 0;border-bottom:1px solid var(--line);align-items:center}
.c-row:last-child{border-bottom:none}
.c-ico{
  width:46px;height:46px;
  flex:none;
  display:flex;align-items:center;justify-content:center;
  background:var(--ink-3);
  border:1px solid var(--line);
}
.c-ico svg{width:22px;height:22px;color:var(--yellow)}
.c-row .c-label{font-family:var(--font-mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted-2)}
.c-row .c-val{font-size:16px;font-weight:600;margin-top:2px}
.c-row .c-val a:hover{color:var(--yellow)}
.hours-grid{display:grid;grid-template-columns:auto auto;gap:6px 20px;margin-top:6px;font-size:14.5px}
.hours-grid .day{color:var(--muted)}
.hours-grid .val{text-align:right;font-weight:600}

.map-wrap{border:1px solid var(--line);min-height:320px;background:var(--ink-2)}
.map-wrap iframe{width:100%;height:100%;min-height:320px;border:0;display:block;filter:grayscale(.2) contrast(1.05)}

/* ---------------- MIETPARK PAGE ---------------- */
.price-card{background:var(--ink-2);border:1px solid var(--line);padding:30px;height:100%}
.price-card h3{font-size:26px}
.price-card .price{font-family:var(--font-display);font-size:40px;color:var(--yellow);letter-spacing:.03em;margin-top:6px}
.price-card .price small{font-size:16px;color:var(--muted-2)}
.price-card p{color:var(--muted);font-size:14.5px;margin-top:10px}
.price-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px}
.p-notes{margin-top:40px;background:var(--ink-2);border:1px solid var(--line);padding:30px}
.p-notes h3{font-size:24px;margin-bottom:16px}
.p-notes ul{display:grid;gap:10px}
.p-notes li{display:flex;gap:12px;font-size:15px;color:var(--muted)}
.p-notes li .tick{color:var(--yellow);font-weight:700;flex:none}

/* ---------------- SUBPAGE HERO ---------------- */
.page-hero{
  position:relative;
  padding:calc(var(--nav-height) + 64px) 0 56px;
  background-size:cover;background-position:center;
  border-bottom:1px solid var(--line);
}
.page-hero .overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(18,18,18,.92) 0%,rgba(18,18,18,.72) 100%);
}
.page-hero .container{position:relative;z-index:2}
.page-hero h1{font-size:clamp(48px,8vw,88px);text-transform:uppercase}
.page-hero p{margin-top:12px;max-width:600px;color:var(--muted);font-size:17px}

/* ---------------- CONTENT / TEXT PAGES ---------------- */
.prose{max-width:760px}
.prose h2{font-size:30px;margin:34px 0 14px}
.prose h3{font-size:22px;margin:26px 0 10px}
.prose p{margin-bottom:14px;color:var(--muted)}
.prose ul{margin:0 0 18px;display:grid;gap:8px}
.prose li{display:flex;gap:12px;color:var(--muted)}
.prose li .tick{color:var(--yellow);font-weight:700;flex:none}

/* ---------------- FOOTER ---------------- */
.footer{border-top:1px solid var(--line);background:var(--ink);padding:56px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.2fr;gap:36px;padding-bottom:40px}
.footer h4{font-family:var(--font-mono);font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--yellow);margin-bottom:16px}
.footer .f-logo img{height:32px;width:auto;margin-bottom:14px}
.footer .f-desc{color:var(--muted-2);font-size:14px;max-width:280px}
.footer ul{display:grid;gap:9px}
.footer ul a{color:var(--muted);font-size:14.5px;transition:color .2s;display:inline-block;padding:6px 0;line-height:1.3}
.footer ul a:hover{color:var(--yellow)}
.footer .f-contact li{color:var(--muted);font-size:14.5px}
.footer .f-contact a:hover{color:var(--yellow)}
.footer-bottom{
  border-top:1px solid var(--line);
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-bottom p{font-family:var(--font-mono);font-size:12px;color:var(--muted-2)}
.footer-bottom p a{color:var(--muted-2);padding:5px 2px;display:inline-block}
.footer-bottom p a:hover{color:var(--yellow)}
.footer-bottom .legal{display:flex;gap:18px;align-items:center}
.footer-bottom .legal a{font-family:var(--font-mono);font-size:12px;color:var(--muted-2);padding:8px 4px;display:inline-block}
.footer-bottom .legal a:hover{color:var(--yellow)}

/* ---------------- LIGHTBOX ---------------- */
.lightbox{
  position:fixed;inset:0;
  background:rgba(10,10,10,.95);
  z-index:2000;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  padding:40px 20px;
}
.lightbox.open{display:flex}
.lightbox img{max-width:min(1100px,92vw);max-height:78vh;object-fit:contain}
.lightbox .lb-cap{color:var(--muted);font-family:var(--font-mono);font-size:13px;letter-spacing:.08em;margin-top:16px}
.lightbox .lb-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:52px;height:52px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  color:var(--white);
  font-size:26px;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.lightbox .lb-nav:hover{background:var(--yellow);color:#161616}
.lightbox .lb-prev{left:18px}
.lightbox .lb-next{right:18px}
.lightbox .lb-close{
  position:absolute;top:18px;right:22px;
  background:none;border:none;
  color:var(--white);font-size:36px;cursor:pointer;line-height:1;
}

/* ---------------- FLOATING WHATSAPP ---------------- */
.wa-float{
  position:fixed;
  right:20px;bottom:20px;
  z-index:1500;
  width:60px;height:60px;
  border-radius:50%;
  background:#25d366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.4);
  transition:transform .2s;
}
.wa-float:hover{transform:scale(1.08)}
.wa-float svg{width:30px;height:30px;fill:#fff}

/* ---------------- RESPONSIVE ---------------- */
@media(max-width:980px){
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero-stats{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .nav-links,.nav-cta{display:none}
  .menu-toggle{display:flex;align-items:center;justify-content:center}
  .mobile-nav{display:flex}
  .section{padding:56px 0}
  .hero{padding:calc(var(--nav-height) + 24px) 0 40px;min-height:92svh}
  .hero h1{font-size:clamp(48px,16vw,74px)}
  .hero-actions .btn{flex:1 1 100%}
  .footer-grid{grid-template-columns:1fr}
  .about-media img{height:300px}
  .about-facts{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:420px){
  .hero-stats{grid-template-columns:repeat(2,1fr)}
  .hero-stats .stat{padding:12px 14px}
  .about-facts{grid-template-columns:repeat(2,1fr)}
  .rent-item{flex-direction:column;align-items:flex-start;gap:6px}
}
